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:
authorJason Wilkins <Jason.A.Wilkins@gmail.com>2010-07-28 11:19:54 +0400
committerJason Wilkins <Jason.A.Wilkins@gmail.com>2010-07-28 11:19:54 +0400
commit3c0ed589c1325535c640b37dcf3fd7c9177b3406 (patch)
treee08ee54b8e305047633d0fa6ced203aa2aa10e9a /release/scripts/ui/space_view3d_toolbar.py
parentf2e1136ca3983e671f1484ddbe471c8a422ab9ea (diff)
* moved Threaded Sculpt, Fast Navigate, and Show Brush back to Sculpt Options panel until they are properly moved in memory to the corresponding places they were in the UI.
Fast Navigate apparently needs to be made an option of the multires modifier Threaded Sculpt and Show Brush need to be made UserPrefs Some of these options were removed form UserPref panel without placing them anywhere else in the interface so this commit at least puts them somewhere so they can be used.
Diffstat (limited to 'release/scripts/ui/space_view3d_toolbar.py')
-rw-r--r--release/scripts/ui/space_view3d_toolbar.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/release/scripts/ui/space_view3d_toolbar.py b/release/scripts/ui/space_view3d_toolbar.py
index 3d138d906af..8fedf67d1a9 100644
--- a/release/scripts/ui/space_view3d_toolbar.py
+++ b/release/scripts/ui/space_view3d_toolbar.py
@@ -1009,6 +1009,10 @@ class VIEW3D_PT_sculpt_options(PaintPanel):
col = split.column()
+ col.prop(sculpt, "use_openmp", text="Threaded Sculpt")
+ col.prop(sculpt, "fast_navigate")
+ col.prop(sculpt, "show_brush")
+
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")
@@ -1024,6 +1028,8 @@ class VIEW3D_PT_sculpt_options(PaintPanel):
row.prop(sculpt, "lock_y", text="Y", toggle=True)
row.prop(sculpt, "lock_z", text="Z", toggle=True)
+
+
class VIEW3D_PT_sculpt_symmetry(PaintPanel):
bl_label = "Symmetry"
bl_default_closed = True