diff options
author | Roel Kluin <12o3l@tiscali.nl> | 2008-03-20 21:30:32 +0100 |
---|---|---|
committer | Sam Ravnborg <sam@uranus.ravnborg.org> | 2008-04-28 22:27:26 +0200 |
commit | 79d6e539df8260fe5d12a2117494aaf80ca1b3e8 (patch) | |
tree | 7f06663fdb863883e986e1a398b182129c2c825f /scripts | |
parent | e31a94ed371c70855eb30b77c490d6d85dd4da26 (diff) | |
download | op-kernel-dev-79d6e539df8260fe5d12a2117494aaf80ca1b3e8.zip op-kernel-dev-79d6e539df8260fe5d12a2117494aaf80ca1b3e8.tar.gz |
kconfig: reversed borderlines in inputbox
Fix reversal of dlg.border.atr and dlg.dialog.atr for draw_box()
Makes the inputbox look like expected
Signed-off-by: Roel Kluin <12o3l@tiscali.nl>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/kconfig/lxdialog/inputbox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/lxdialog/inputbox.c b/scripts/kconfig/lxdialog/inputbox.c index 4946bd0..616c601 100644 --- a/scripts/kconfig/lxdialog/inputbox.c +++ b/scripts/kconfig/lxdialog/inputbox.c @@ -89,7 +89,7 @@ do_resize: box_y = y + 2; box_x = (width - box_width) / 2; draw_box(dialog, y + 1, box_x - 1, 3, box_width + 2, - dlg.border.atr, dlg.dialog.atr); + dlg.dialog.atr, dlg.border.atr); print_buttons(dialog, height, width, 0); |