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
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')
-rw-r--r--release/scripts/ui/properties_data_modifier.py1
-rw-r--r--release/scripts/ui/space_userpref.py3
-rw-r--r--release/scripts/ui/space_view3d_toolbar.py6
3 files changed, 7 insertions, 3 deletions
diff --git a/release/scripts/ui/properties_data_modifier.py b/release/scripts/ui/properties_data_modifier.py
index dfa0d8029b2..37764e20854 100644
--- a/release/scripts/ui/properties_data_modifier.py
+++ b/release/scripts/ui/properties_data_modifier.py
@@ -437,7 +437,6 @@ class DATA_PT_modifiers(DataButtonsPanel):
col.prop(md, "levels", text="Preview")
col.prop(md, "sculpt_levels", text="Sculpt")
col.prop(md, "render_levels", text="Render")
- col.prop(bpy.context.tool_settings.sculpt, "fast_navigate")
if wide_ui:
col = split.column()
diff --git a/release/scripts/ui/space_userpref.py b/release/scripts/ui/space_userpref.py
index d543d9a4531..7929aa64df7 100644
--- a/release/scripts/ui/space_userpref.py
+++ b/release/scripts/ui/space_userpref.py
@@ -329,8 +329,7 @@ class USERPREF_PT_edit(bpy.types.Panel):
col = row.column()
row = col.row(align=True)
- row.label("Overlay Color:")
- row.prop(edit, "sculpt_paint_overlay_col", text="")
+ row.prop(edit, "sculpt_paint_overlay_col", text="Sculpt Overlay Color")
col.separator()
col.separator()
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