mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
"CONTINUE" was just too long. Make it a nice "OK" now.
This commit is contained in:
parent
abacbbbf01
commit
3cd2d3f69a
2 changed files with 2 additions and 2 deletions
|
|
@ -171,7 +171,7 @@ dialog_mesgbox(unsigned char *title, unsigned char *prompt, int height, int widt
|
|||
for (i = 0; i < width-2; i++)
|
||||
waddch(dialog, ' ');
|
||||
display_helpline(dialog, height-1, width);
|
||||
print_button(dialog, " CONTINUE ", height-2, width/2-8, TRUE);
|
||||
print_button(dialog, " OK ", height-2, width/2-2, TRUE);
|
||||
wattrset(dialog, dialog_attr);
|
||||
|
||||
theight = height - 4;
|
||||
|
|
|
|||
|
|
@ -136,7 +136,7 @@ int dialog_textbox(unsigned char *title, unsigned char *file, int height, int wi
|
|||
}
|
||||
display_helpline(dialog, height-1, width);
|
||||
|
||||
print_button(dialog, " CONTINUE ", height-2, width/2-8, TRUE);
|
||||
print_button(dialog, " OK ", height-2, width/2-2, TRUE);
|
||||
wnoutrefresh(dialog);
|
||||
getyx(dialog, cur_y, cur_x); /* Save cursor position */
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue