diff options
| author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-07-11 18:22:16 +0000 |
|---|---|---|
| committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-07-11 18:22:16 +0000 |
| commit | 15232ab26e52e2e1c4bbbc627b7fd4368a976818 (patch) | |
| tree | f1bb4d5097f04afdc423b04d0bc3634801d4d479 /gnu/lib/libdialog/msgbox.c | |
| parent | 68753bffb7d467231b4acde48e56e9fa3d631d12 (diff) | |
Notes
Diffstat (limited to 'gnu/lib/libdialog/msgbox.c')
| -rw-r--r-- | gnu/lib/libdialog/msgbox.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/lib/libdialog/msgbox.c b/gnu/lib/libdialog/msgbox.c index ebc89eb72d1c..ba51628a7037 100644 --- a/gnu/lib/libdialog/msgbox.c +++ b/gnu/lib/libdialog/msgbox.c @@ -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, " EXIT ", height-2, width/2-4, TRUE); + print_button(dialog, " CONTINUE ", height-2, width/2-8, TRUE); wattrset(dialog, dialog_attr); theight = height - 4; @@ -180,7 +180,7 @@ dialog_mesgbox(unsigned char *title, unsigned char *prompt, int height, int widt max_lines = getnlines(prompt); print_page(dialog, theight, width, prompt, startline, hscroll); print_perc(dialog, height-3, width-9, (float) (startline+theight)/max_lines); - wmove(dialog, height-2, width/2-2); + wmove(dialog, height-2, width/2-6); wrefresh(dialog); while ((key != ESC) && (key != '\n') && (key != '\r')) { key = wgetch(dialog); |
