summaryrefslogtreecommitdiffstats
path: root/support/kconfig/lxdialog/inputbox.c
diff options
context:
space:
mode:
authorYann E. MORIN <yann.morin.1998@free.fr>2013-11-14 00:53:35 +0100
committerPeter Korsgaard <peter@korsgaard.com>2013-11-14 12:34:49 +0100
commitb48e35a28a6391ec16f09df66ad5b1065330f265 (patch)
tree83e955dab61ba5cca95707c2b7920e74ec99e2d0 /support/kconfig/lxdialog/inputbox.c
parent147be50283c49ed15a6b56aaa5d455eec92c9615 (diff)
downloadbuildroot-b48e35a28a6391ec16f09df66ad5b1065330f265.tar.gz
buildroot-b48e35a28a6391ec16f09df66ad5b1065330f265.zip
support/kconfig: bump to kconfig from linux-3.12
With this, we can trash our probability patch, it's now upstream. Refresh a few other patches. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'support/kconfig/lxdialog/inputbox.c')
-rw-r--r--support/kconfig/lxdialog/inputbox.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/support/kconfig/lxdialog/inputbox.c b/support/kconfig/lxdialog/inputbox.c
index 21404a04d7..447a582198 100644
--- a/support/kconfig/lxdialog/inputbox.c
+++ b/support/kconfig/lxdialog/inputbox.c
@@ -56,14 +56,14 @@ int dialog_inputbox(const char *title, const char *prompt, int height, int width
strcpy(instr, init);
do_resize:
- if (getmaxy(stdscr) <= (height - 2))
+ if (getmaxy(stdscr) <= (height - INPUTBOX_HEIGTH_MIN))
return -ERRDISPLAYTOOSMALL;
- if (getmaxx(stdscr) <= (width - 2))
+ if (getmaxx(stdscr) <= (width - INPUTBOX_WIDTH_MIN))
return -ERRDISPLAYTOOSMALL;
/* center dialog box on screen */
- x = (COLS - width) / 2;
- y = (LINES - height) / 2;
+ x = (getmaxx(stdscr) - width) / 2;
+ y = (getmaxy(stdscr) - height) / 2;
draw_shadow(stdscr, y, x, height, width);
OpenPOWER on IntegriCloud