diff options
author | ache <ache@FreeBSD.org> | 1994-11-18 00:30:06 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1994-11-18 00:30:06 +0000 |
commit | b847ed27c47795d4538977ffa9f784ebc384dddb (patch) | |
tree | 589bc9c54c47152b2fedaa9aa06da7819239ce5e /gnu/lib/libdialog/inputbox.c | |
parent | 91d0857ccb32ba699e6a61e0ad2a81d1b44ed952 (diff) | |
download | FreeBSD-src-b847ed27c47795d4538977ffa9f784ebc384dddb.zip FreeBSD-src-b847ed27c47795d4538977ffa9f784ebc384dddb.tar.gz |
Save/restore attrs in line_edit now
Diffstat (limited to 'gnu/lib/libdialog/inputbox.c')
-rw-r--r-- | gnu/lib/libdialog/inputbox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/lib/libdialog/inputbox.c b/gnu/lib/libdialog/inputbox.c index 11e3566..a544ec0 100644 --- a/gnu/lib/libdialog/inputbox.c +++ b/gnu/lib/libdialog/inputbox.c @@ -97,7 +97,7 @@ int dialog_inputbox(unsigned char *title, unsigned char *prompt, int height, int while (key != ESC) { if (button == -1) { /* Input box selected */ - key = line_edit(dialog, box_y, box_x, box_width, dialog_attr, first, instr); + key = line_edit(dialog, box_y, box_x, box_width, inputbox_attr, first, instr); first = 0; } else |