[svn-commits] russell: trunk r537 - /trunk/menuselect_newt.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Tue Jun 30 11:33:47 CDT 2009
Author: russell
Date: Tue Jun 30 11:33:44 2009
New Revision: 537
URL: http://svn.asterisk.org/svn-view/menuselect?view=rev&rev=537
Log:
Make the category name fit ... did I do this right? Who knows. If not, seanbright will fix it.
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=537&r1=536&r2=537
==============================================================================
--- trunk/menuselect_newt.c (original)
+++ trunk/menuselect_newt.c Tue Jun 30 11:33:44 2009
@@ -269,11 +269,11 @@
newtFormSetTimer(form, 200);
rootOptions = newtListbox(2, 1, y - 15, 0);
- newtListboxSetWidth(rootOptions, 29);
+ newtListboxSetWidth(rootOptions, 34);
newtFormAddComponent(form, rootOptions);
newtComponentAddCallback(rootOptions, root_menu_callback, NULL);
- subOptions = newtListbox(33, 1, y - 15, NEWT_FLAG_SCROLL | NEWT_FLAG_RETURNEXIT);
+ subOptions = newtListbox(38, 1, y - 15, NEWT_FLAG_SCROLL | NEWT_FLAG_RETURNEXIT);
newtListboxSetWidth(subOptions, x - 42);
newtFormAddComponent(form, subOptions);
newtComponentAddCallback(subOptions, category_menu_callback, NULL);
More information about the svn-commits
mailing list