From 749078d511240405a6372ffc932804969cc40557 Mon Sep 17 00:00:00 2001 From: Diego Hernan Borghetti Date: Tue, 26 Feb 2008 12:36:05 -0300 Subject: [PATCH] Popup menus for displaying names of groups available for selection now draw with multiple columns when the number of entries cannot fit in a single column (and be editable). Author: Joshua Leung SVN revision: 13869 Date: 2008-02-26 03:33:06 -0300 (Tue, 26 Feb 2008) --- source/blender/src/editgroup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/src/editgroup.c b/source/blender/src/editgroup.c index 59f33ca..8c47a81 100644 --- a/source/blender/src/editgroup.c +++ b/source/blender/src/editgroup.c @@ -173,7 +173,7 @@ void group_operation(int mode) strp1 += sprintf(strp1, "%s %%x%d|", group->id.name+2, tot); } } - tot= pupmenu(strp); + tot= pupmenu_col(strp, 20); MEM_freeN(strp); if(tot>0) group= BLI_findlink(&G.main->group, tot-1); else return; -- 2.11.4.GIT