[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [38771] branches/soc-2011-onion/release/ scripts/startup/bl_ui/space_view3d_toolbar.py: more python ui fixes

Jason Wilkins Jason.A.Wilkins at gmail.com
Thu Jul 28 02:29:07 CEST 2011


Revision: 38771
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=38771
Author:   jwilkins
Date:     2011-07-28 00:29:06 +0000 (Thu, 28 Jul 2011)
Log Message:
-----------
more python ui fixes

Modified Paths:
--------------
    branches/soc-2011-onion/release/scripts/startup/bl_ui/space_view3d_toolbar.py

Modified: branches/soc-2011-onion/release/scripts/startup/bl_ui/space_view3d_toolbar.py
===================================================================
--- branches/soc-2011-onion/release/scripts/startup/bl_ui/space_view3d_toolbar.py	2011-07-28 00:08:03 UTC (rev 38770)
+++ branches/soc-2011-onion/release/scripts/startup/bl_ui/space_view3d_toolbar.py	2011-07-28 00:29:06 UTC (rev 38771)
@@ -1127,7 +1127,7 @@
             col.separator()
 
             col = layout.column()
-            col.active = (not brush.use_anchor) and (brush.sculpt_tool not in {'GRAB', 'THUMB', 'ROTATE', 'SNAKE_HOOK'})
+            col.active = (not brush.use_anchored_stroke) and (brush.sculpt_tool not in {'GRAB', 'THUMB', 'ROTATE', 'SNAKE_HOOK'})
 
             row = col.row()
             row.prop(brush, "use_path_stroke")
@@ -1324,8 +1324,6 @@
             col.prop(mesh, "use_mirror_x")
             col.prop(mesh, "use_mirror_topology")
 
-        col.prop(wpaint, "stroke_input_samples", text="Input Samples")
-
         col.label(text="Unified Settings:")
         col.prop(tool_settings, "sculpt_paint_use_unified_size", text="Size")
         col.prop(tool_settings, "sculpt_paint_use_unified_strength", text="Strength")
@@ -1359,8 +1357,6 @@
         col.prop(vpaint, "use_spray")
         col.prop(vpaint, "show_brush")
 
-        col.prop(vpaint, "stroke_input_samples", text="Input Samples")
-
         col.label(text="Unified Settings:")
         col.prop(tool_settings, "sculpt_paint_use_unified_size", text="Size")
         col.prop(tool_settings, "sculpt_paint_use_unified_strength", text="Strength")




More information about the Bf-blender-cvs mailing list