[svn-commits] branch group/autoconf_and_menuselect r18343 - /team/group/autoconf_and_menuse...

svn-commits at lists.digium.com svn-commits at lists.digium.com
Fri Apr 7 11:55:09 MST 2006


Author: russell
Date: Fri Apr  7 13:55:08 2006
New Revision: 18343

URL: http://svn.digium.com/view/asterisk?rev=18343&view=rev
Log:
revert a silly optimization that made it so changes wouldn't be displayed
until you re-enter the menu

Modified:
    team/group/autoconf_and_menuselect/build_tools/menuselect.c

Modified: team/group/autoconf_and_menuselect/build_tools/menuselect.c
URL: http://svn.digium.com/view/asterisk/team/group/autoconf_and_menuselect/build_tools/menuselect.c?rev=18343&r1=18342&r2=18343&view=diff
==============================================================================
--- team/group/autoconf_and_menuselect/build_tools/menuselect.c (original)
+++ team/group/autoconf_and_menuselect/build_tools/menuselect.c Fri Apr  7 13:55:08 2006
@@ -637,13 +637,6 @@
 	struct member *mem;
 	char buf[64];
 
-	/* Don't redraw the whole thing if all we need to do is move the cursor */
-	if (curopt != start && curopt != end - 1) {
-		wmove(menu, curopt - start, max_x / 2 - 9);
-		wrefresh(menu);
-		return;
-	}
-
 	wclear(menu);
 
 	AST_LIST_TRAVERSE(&cat->members, mem, list) {



More information about the svn-commits mailing list