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:
authorAntony Riakiotakis <kalast@gmail.com>2014-02-12 19:04:39 +0400
committerAntony Riakiotakis <kalast@gmail.com>2014-02-12 19:04:57 +0400
commit1c862f33a0f15ff3585d1f28edd7cee47e636a51 (patch)
tree26e8a367f1cba052c24fc7b9a14b5b064b00fc63 /release
parent786ff5e9c4c50cac34832c65c0b8a1a1e9b062a0 (diff)
Sculpting: Move lock options in symmetry panel.
Lock is an often used option according to artist feedback, so better have it on the same tab as brush tools.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py15
1 files changed, 7 insertions, 8 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index b2f31699718..3ae4330249a 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -1250,13 +1250,6 @@ class VIEW3D_PT_sculpt_options(Panel, View3DPaintPanel):
col.prop(sculpt, "gravity", slider=True, text="Factor")
col.prop(sculpt, "gravity_object")
- layout.label(text="Lock:")
-
- row = layout.row(align=True)
- row.prop(sculpt, "lock_x", text="X", toggle=True)
- row.prop(sculpt, "lock_y", text="Y", toggle=True)
- row.prop(sculpt, "lock_z", text="Z", toggle=True)
-
layout.prop(sculpt, "use_threaded", text="Threaded Sculpt")
layout.prop(sculpt, "show_low_resolution")
layout.prop(sculpt, "use_deform_only")
@@ -1267,7 +1260,7 @@ class VIEW3D_PT_sculpt_options(Panel, View3DPaintPanel):
class VIEW3D_PT_sculpt_symmetry(Panel, View3DPaintPanel):
bl_category = "Tools"
- bl_label = "Symmetry"
+ bl_label = "Symmetry \ Lock"
bl_options = {'DEFAULT_CLOSED'}
@classmethod
@@ -1289,6 +1282,12 @@ class VIEW3D_PT_sculpt_symmetry(Panel, View3DPaintPanel):
layout.column().prop(sculpt, "radial_symmetry", text="Radial")
layout.prop(sculpt, "use_symmetry_feather", text="Feather")
+ layout.label(text="Lock:")
+
+ row = layout.row(align=True)
+ row.prop(sculpt, "lock_x", text="X", toggle=True)
+ row.prop(sculpt, "lock_y", text="Y", toggle=True)
+ row.prop(sculpt, "lock_z", text="Z", toggle=True)
class VIEW3D_PT_tools_brush_appearance(Panel, View3DPaintPanel):
bl_category = "Options"