From 29ea84015c77e02938fc8b3140f0474d9258e099 Mon Sep 17 00:00:00 2001 From: Gaia Clary Date: Sun, 23 Jun 2013 18:00:14 +0000 Subject: [PATCH] readded 'old' layout due to user complains --- source/blender/editors/space_view3d/view3d_buttons.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/blender/editors/space_view3d/view3d_buttons.c b/source/blender/editors/space_view3d/view3d_buttons.c index 54173893847..03892c5f57d 100644 --- a/source/blender/editors/space_view3d/view3d_buttons.c +++ b/source/blender/editors/space_view3d/view3d_buttons.c @@ -901,9 +901,9 @@ static void view3d_panel_vgroup(const bContext *C, Panel *pa) uiItemR(row, &tools_ptr, "vertex_group_subset", UI_ITEM_R_EXPAND, NULL, ICON_NONE); col = uiLayoutColumn(bcol, true); - box = uiLayoutBox(col); /* The list box */ + //box = uiLayoutBox(col); /* The list box */ - col = uiLayoutColumn(box, true); + //col = uiLayoutColumn(box, true); vgroup_validmap = ED_vgroup_subset_from_select_type(ob, subset_type, &vgroup_tot, &subset_count); for (i = 0, dg = ob->defbase.first; dg; i++, dg = dg->next) { if (vgroup_validmap[i]) { @@ -912,7 +912,7 @@ static void view3d_panel_vgroup(const bContext *C, Panel *pa) int x, xco = 0; row = uiLayoutRow(col, true); - uiBlockSetEmboss(block, UI_EMBOSSN); + //uiBlockSetEmboss(block, UI_EMBOSSN); /* The Weight Group Name */ @@ -956,7 +956,7 @@ static void view3d_panel_vgroup(const bContext *C, Panel *pa) } MEM_freeN((void *)vgroup_validmap); - uiBlockSetEmboss(block, UI_EMBOSS); + //uiBlockSetEmboss(block, UI_EMBOSS); yco -= 2;