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:
authorJoshua Leung <aligorith@gmail.com>2013-01-29 06:00:33 +0400
committerJoshua Leung <aligorith@gmail.com>2013-01-29 06:00:33 +0400
commitd6b166d1a191d5174bc26ef3b1862a277e1288e2 (patch)
tree8529e833bd7428d3af0cab806eca028ef8a2d7f2 /release
parent56f82655ed0535ed0d935f1eb6c435ea25be3db2 (diff)
Bugfix [#34012] Skeleton Sketching settings unclear
Although the bug report here wasn't exactly clear about what exactly was wrong, it soon became apparent that the UI stuff here was in need of some love. Changes: * Ported over missing tooltips from 2.49 (i.e. most of them) * Fixed a few incorrect tooltips (mostly the subdivision length settings) * Made the autonaming and number/side settings slightly clearer - number/side are used to replace placeholders in the names of template bones (&N and &S respectively) when autonaming is disabled. When it is enabled, these values are determined automatically.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py18
1 files changed, 14 insertions, 4 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index d1f9ea58654..63dd27e7d3e 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -2687,6 +2687,8 @@ class VIEW3D_PT_etch_a_ton(Panel):
col.prop(toolsettings, "use_etch_quick")
col.prop(toolsettings, "use_etch_overdraw")
+ col.separator()
+
col.prop(toolsettings, "etch_convert_mode")
if toolsettings.etch_convert_mode == 'LENGTH':
@@ -2698,11 +2700,19 @@ class VIEW3D_PT_etch_a_ton(Panel):
elif toolsettings.etch_convert_mode == 'RETARGET':
col.prop(toolsettings, "etch_template")
col.prop(toolsettings, "etch_roll_mode")
- col.prop(toolsettings, "use_etch_autoname")
- col.prop(toolsettings, "etch_number")
- col.prop(toolsettings, "etch_side")
- col.operator("sketch.convert", text="Convert")
+ col.separator()
+
+ colsub = col.column(align=True)
+ colsub.prop(toolsettings, "use_etch_autoname")
+ sub = colsub.column()
+ sub.enabled = not toolsettings.use_etch_autoname
+ sub.prop(toolsettings, "etch_number")
+ sub.prop(toolsettings, "etch_side")
+
+ col.separator()
+
+ col.operator("sketch.convert", text="Convert to Bones")
class VIEW3D_PT_context_properties(Panel):