[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [30316] branches/soc-2010-jwilkins/release /scripts/ui: * moved 'fast_navigate' from user prefs to multires modifier panel

Jason Wilkins Jason.A.Wilkins at gmail.com
Wed Jul 14 13:32:13 CEST 2010


Revision: 30316
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=30316
Author:   jwilkins
Date:     2010-07-14 13:32:13 +0200 (Wed, 14 Jul 2010)

Log Message:
-----------
* moved 'fast_navigate' from user prefs to multires modifier panel

Modified Paths:
--------------
    branches/soc-2010-jwilkins/release/scripts/ui/space_userpref.py
    branches/soc-2010-jwilkins/release/scripts/ui/space_view3d_toolbar.py

Modified: branches/soc-2010-jwilkins/release/scripts/ui/space_userpref.py
===================================================================
--- branches/soc-2010-jwilkins/release/scripts/ui/space_userpref.py	2010-07-14 11:07:30 UTC (rev 30315)
+++ branches/soc-2010-jwilkins/release/scripts/ui/space_userpref.py	2010-07-14 11:32:13 UTC (rev 30316)
@@ -334,7 +334,6 @@
         col.prop(edit, "sculpt_paint_use_unified_strength", text="Unify Strength")
         col.prop(edit, "sculpt_paint_overlay_col", text="Overlay Color")
         col.prop(sculpt, "use_openmp", text="Threaded Sculpt")
-        col.prop(sculpt, "fast_navigate")
         col.prop(sculpt, "show_brush")
 
         row = col.row()

Modified: branches/soc-2010-jwilkins/release/scripts/ui/space_view3d_toolbar.py
===================================================================
--- branches/soc-2010-jwilkins/release/scripts/ui/space_view3d_toolbar.py	2010-07-14 11:07:30 UTC (rev 30315)
+++ branches/soc-2010-jwilkins/release/scripts/ui/space_view3d_toolbar.py	2010-07-14 11:32:13 UTC (rev 30316)
@@ -638,7 +638,8 @@
 
                 row.prop(brush, "sculpt_plane", text="")
 
-            if brush.sculpt_tool in ('CLAY', 'CLAY_TUBES', 'FLATTEN', 'FILL', 'SCRAPE'):
+            #if brush.sculpt_tool in ('CLAY', 'CLAY_TUBES', 'FLATTEN', 'FILL', 'SCRAPE'):
+            if brush.sculpt_tool in ('CLAY', 'FLATTEN', 'FILL', 'SCRAPE'):
                 row = col.row(align=True)
                 row.prop(brush, "plane_offset", slider=True)
                 row.prop(brush, "use_offset_pressure", text="")
@@ -656,7 +657,8 @@
             row= col.row()
             row.prop(brush, "use_frontface", text="Front Faces Only")
 
-            if brush.sculpt_tool in ('DRAW', 'CREASE', 'BLOB', 'LAYER', 'CLAY', 'CLAY_TUBES'):
+            #if brush.sculpt_tool in ('DRAW', 'CREASE', 'BLOB', 'LAYER', 'CLAY', 'CLAY_TUBES'):
+            if brush.sculpt_tool in ('DRAW', 'CREASE', 'BLOB', 'LAYER', 'CLAY'):
                 col.separator()
                 col.row().prop(brush, "direction", expand=True)
             elif brush.sculpt_tool in ('FLATTEN'):
@@ -677,7 +679,8 @@
 
 
 
-            if brush.sculpt_tool in ('DRAW', 'CREASE', 'BLOB', 'INFLATE', 'LAYER', 'CLAY', 'CLAY_TUBES'):
+            #if brush.sculpt_tool in ('DRAW', 'CREASE', 'BLOB', 'INFLATE', 'LAYER', 'CLAY', 'CLAY_TUBES'):
+            if brush.sculpt_tool in ('DRAW', 'CREASE', 'BLOB', 'INFLATE', 'LAYER', 'CLAY'):
                 col.separator()
 
                 col.prop(brush, "use_accumulate")
@@ -1108,7 +1111,8 @@
         col = layout.column();
 
         if context.sculpt_object and context.tool_settings.sculpt:
-            if brush.sculpt_tool in ('DRAW', 'INFLATE', 'CLAY', 'CLAY_TUBES', 'PINCH', 'CREASE', 'BLOB', 'FLATTEN'):
+            #if brush.sculpt_tool in ('DRAW', 'INFLATE', 'CLAY', 'CLAY_TUBES', 'PINCH', 'CREASE', 'BLOB', 'FLATTEN'):
+            if brush.sculpt_tool in ('DRAW', 'INFLATE', 'CLAY', 'PINCH', 'CREASE', 'BLOB', 'FLATTEN'):
                 col.prop(brush, "add_col", text="Add Color")
                 col.prop(brush, "sub_col", text="Substract Color")
             else:





More information about the Bf-blender-cvs mailing list