From 82c3fac15a288402754df8d2115aca659980dec9 Mon Sep 17 00:00:00 2001 From: jkh Date: Fri, 4 Oct 1996 13:06:48 +0000 Subject: "CONTINUE" was just too long. Make it a nice "OK" now. --- gnu/lib/libdialog/msgbox.c | 2 +- gnu/lib/libdialog/textbox.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/lib/libdialog/msgbox.c b/gnu/lib/libdialog/msgbox.c index ba51628..65e7b47 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, " CONTINUE ", height-2, width/2-8, TRUE); + print_button(dialog, " OK ", height-2, width/2-2, TRUE); wattrset(dialog, dialog_attr); theight = height - 4; 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 */ -- cgit v1.1