[svn-commits] seanbright: trunk r538 - /trunk/menuselect_newt.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Jun 30 11:43:40 CDT 2009


Author: seanbright
Date: Tue Jun 30 11:43:36 2009
New Revision: 538

URL: http://svn.asterisk.org/svn-view/menuselect?view=rev&rev=538
Log:
We have to decrease the settings list width because we pushed it over.

Modified:
    trunk/menuselect_newt.c

Modified: trunk/menuselect_newt.c
URL: http://svn.asterisk.org/svn-view/menuselect/trunk/menuselect_newt.c?view=diff&rev=538&r1=537&r2=538
==============================================================================
--- trunk/menuselect_newt.c (original)
+++ trunk/menuselect_newt.c Tue Jun 30 11:43:36 2009
@@ -274,7 +274,7 @@
 	newtComponentAddCallback(rootOptions, root_menu_callback, NULL);
 
 	subOptions = newtListbox(38, 1, y - 15, NEWT_FLAG_SCROLL | NEWT_FLAG_RETURNEXIT);
-	newtListboxSetWidth(subOptions, x - 42);
+	newtListboxSetWidth(subOptions, x - 47);
 	newtFormAddComponent(form, subOptions);
 	newtComponentAddCallback(subOptions, category_menu_callback, NULL);
 




More information about the svn-commits mailing list