"CONTINUE" was just too long. Make it a nice "OK" now.

This commit is contained in:
Jordan K. Hubbard 1996-10-04 13:06:48 +00:00
parent abacbbbf01
commit 3cd2d3f69a
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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 */