aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRoel Kluin <12o3l@tiscali.nl>2008-03-20 16:30:32 -0400
committerSam Ravnborg <sam@uranus.ravnborg.org>2008-04-28 16:27:26 -0400
commit79d6e539df8260fe5d12a2117494aaf80ca1b3e8 (patch)
tree7f06663fdb863883e986e1a398b182129c2c825f /scripts
parente31a94ed371c70855eb30b77c490d6d85dd4da26 (diff)
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/lxdialog/inputbox.c b/scripts/kconfig/lxdialog/inputbox.c
index 4946bd02b46d..616c60138183 100644
--- a/scripts/kconfig/lxdialog/inputbox.c
+++ b/scripts/kconfig/lxdialog/inputbox.c
@@ -89,7 +89,7 @@ do_resize:
89 box_y = y + 2; 89 box_y = y + 2;
90 box_x = (width - box_width) / 2; 90 box_x = (width - box_width) / 2;
91 draw_box(dialog, y + 1, box_x - 1, 3, box_width + 2, 91 draw_box(dialog, y + 1, box_x - 1, 3, box_width + 2,
92 dlg.border.atr, dlg.dialog.atr); 92 dlg.dialog.atr, dlg.border.atr);
93 93
94 print_buttons(dialog, height, width, 0); 94 print_buttons(dialog, height, width, 0);
95 95