menuconfig: fix to center checklist correctly in a corner case
[pandora-kernel.git] / scripts / kconfig / lxdialog / checklist.c
index bcc6f19..c92a05a 100644 (file)
@@ -175,6 +175,7 @@ do_resize:
        check_x = 0;
        item_foreach()
                check_x = MAX(check_x, strlen(item_str()) + 4);
+       check_x = MIN(check_x, list_width);
 
        check_x = (list_width - check_x) / 2;
        item_x = check_x + 4;