[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [57855] trunk/blender/release/scripts/ startup/bl_ui/space_view3d_toolbar.py: weight Paint: moved Auto Normalize and Multipaint options below Blend selector

Gaia Clary gaia.clary at machinimatrix.org
Fri Jun 28 19:10:25 CEST 2013


Revision: 57855
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=57855
Author:   gaiaclary
Date:     2013-06-28 17:10:25 +0000 (Fri, 28 Jun 2013)
Log Message:
-----------
weight Paint: moved Auto Normalize and Multipaint options below Blend selector

Modified Paths:
--------------
    trunk/blender/release/scripts/startup/bl_ui/space_view3d_toolbar.py

Modified: trunk/blender/release/scripts/startup/bl_ui/space_view3d_toolbar.py
===================================================================
--- trunk/blender/release/scripts/startup/bl_ui/space_view3d_toolbar.py	2013-06-28 16:37:39 UTC (rev 57854)
+++ trunk/blender/release/scripts/startup/bl_ui/space_view3d_toolbar.py	2013-06-28 17:10:25 UTC (rev 57855)
@@ -726,8 +726,6 @@
 
         # Weight Paint Mode #
         elif context.weight_paint_object and brush:
-            layout.prop(toolsettings, "use_auto_normalize", text="Auto Normalize")
-            layout.prop(toolsettings, "use_multipaint", text="Multi-Paint")
 
             col = layout.column()
 
@@ -746,6 +744,10 @@
 
             col.prop(brush, "vertex_tool", text="Blend")
 
+            col = layout.column()
+            col.prop(toolsettings, "use_auto_normalize", text="Auto Normalize")
+            col.prop(toolsettings, "use_multipaint", text="Multi-Paint")
+
         # Vertex Paint Mode #
         elif context.vertex_paint_object and brush:
             col = layout.column()




More information about the Bf-blender-cvs mailing list