Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaia Clary <gaia.clary@machinimatrix.org>2013-06-23 22:00:14 +0400
committerGaia Clary <gaia.clary@machinimatrix.org>2013-06-23 22:00:14 +0400
commit29ea84015c77e02938fc8b3140f0474d9258e099 (patch)
treef6be5ccc8d963093b1f56e44cc1aedffa965f5f7 /source/blender/editors/space_view3d/view3d_buttons.c
parent9b6f05e3ad3c695d523c7cfec918e0f89828dec1 (diff)
readded 'old' layout due to user complains
Diffstat (limited to 'source/blender/editors/space_view3d/view3d_buttons.c')
-rw-r--r--source/blender/editors/space_view3d/view3d_buttons.c8
1 files 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;