[svn-commits] lmadsen: trunk r786 - /trunk/menuselect_curses.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Jul 22 12:09:12 CDT 2010


Author: lmadsen
Date: Thu Jul 22 12:09:07 2010
New Revision: 786

URL: http://svnview.digium.com/svn/menuselect?view=rev&rev=786
Log:
Make minimum menuselect screen size to be 80x27.

We have enough options now in the ncurses version of menuselect that you need
a minimum of an 80x27 screen or else the options at the end of the screen
will overlap each other. Update menuselect to require 80x27.


(closes issue #17685)
Reported by: lmadsen

Modified:
    trunk/menuselect_curses.c

Modified: trunk/menuselect_curses.c
URL: http://svnview.digium.com/svn/menuselect/trunk/menuselect_curses.c?view=diff&rev=786&r1=785&r2=786
==============================================================================
--- trunk/menuselect_curses.c (original)
+++ trunk/menuselect_curses.c Thu Jul 22 12:09:07 2010
@@ -40,7 +40,7 @@
 #define TITLE_HEIGHT	7
 
 #define MIN_X		80
-#define MIN_Y		24
+#define MIN_Y		27
 
 #define PAGE_OFFSET	10
 




More information about the svn-commits mailing list