[Bf-blender-cvs] [8a438de] soc-2016-pbvh-painting: Forgot to commit modified toolbar.

Nathan Vollmer noreply at git.blender.org
Mon Jul 18 20:51:11 CEST 2016


Commit: 8a438de61063c8512659fa4151756cae927efc00
Author: Nathan Vollmer
Date:   Mon Jul 18 12:50:35 2016 -0600
Branches: soc-2016-pbvh-painting
https://developer.blender.org/rB8a438de61063c8512659fa4151756cae927efc00

Forgot to commit modified toolbar.

===================================================================

M	release/scripts/startup/bl_ui/space_view3d_toolbar.py

===================================================================

diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index 42081ff..c7fcc95 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -1607,7 +1607,7 @@ class VIEW3D_PT_sculpt_options(Panel, View3DPaintPanel):
 
 class VIEW3D_PT_sculpt_symmetry(Panel, View3DPaintPanel):
     bl_category = "Tools"
-    bl_label = "Symmetry/Lock"
+    bl_label = "Symmetry / Lock"
     bl_options = {'DEFAULT_CLOSED'}
 
     @classmethod
@@ -1694,7 +1694,6 @@ class VIEW3D_PT_tools_brush_appearance(Panel, View3DPaintPanel):
 class VIEW3D_PT_tools_weightpaint(View3DPanel, Panel):
     bl_category = "Tools"
     bl_context = "weightpaint"
-    bl_options = {'DEFAULT_CLOSED'}
     bl_label = "Weight Tools"
 
     def draw(self, context):
@@ -1707,26 +1706,6 @@ class VIEW3D_PT_tools_weightpaint(View3DPanel, Panel):
         props.use_reverse_transfer = True
         props.data_type = 'VGROUP_WEIGHTS'
 
-class VIEW3D_PT_weightpaint_symmetry(Panel, View3DPaintPanel):
-    bl_category = "Tools"
-    bl_context = "weightpaint"
-    bl_options = {'DEFAULT_CLOSED'}
-    bl_label = "Symmetry / Lock"
-    
-    def draw(self, context):
-        layout = self.layout
-        toolsettings = context.tool_settings
-        wpaint = toolsettings.weight_paint
-
-        col = layout.column(align=True)
-        col.label(text="Mirror:")
-        row = col.row(align=True)
-        
-        row.prop(wpaint, "use_symmetry_x", text="X", toggle=True)
-        row.prop(wpaint, "use_symmetry_y", text="Y", toggle=True)
-        row.prop(wpaint, "use_symmetry_z", text="Z", toggle=True)
-        
-        layout.column().prop(wpaint, "radial_symmetry", text="Radial")
 
 class VIEW3D_PT_tools_weightpaint_options(Panel, View3DPaintPanel):
     bl_category = "Options"




More information about the Bf-blender-cvs mailing list