diff options
author | jkh <jkh@FreeBSD.org> | 1996-10-04 13:06:48 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1996-10-04 13:06:48 +0000 |
commit | 82c3fac15a288402754df8d2115aca659980dec9 (patch) | |
tree | c9ed9f6a745323cf4ea2e6f55efc10d0de0ad110 /gnu/lib/libdialog/textbox.c | |
parent | 342c1e079401a7b0174ba0bb6b4c4cbc9839e9e3 (diff) | |
download | FreeBSD-src-82c3fac15a288402754df8d2115aca659980dec9.zip FreeBSD-src-82c3fac15a288402754df8d2115aca659980dec9.tar.gz |
"CONTINUE" was just too long. Make it a nice "OK" now.
Diffstat (limited to 'gnu/lib/libdialog/textbox.c')
-rw-r--r-- | gnu/lib/libdialog/textbox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/lib/libdialog/textbox.c b/gnu/lib/libdialog/textbox.c index d706c78..a26247b 100644 --- a/gnu/lib/libdialog/textbox.c +++ b/gnu/lib/libdialog/textbox.c @@ -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 */ |