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:
authorCampbell Barton <ideasman42@gmail.com>2010-10-23 14:06:40 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-10-23 14:06:40 +0400
commit563e3c94052aab05ae20e85951cbd86acbb02819 (patch)
tree5286956b1b541c7566350f721225703287b74eda /release/scripts/ui
parentf4415ce84a71964d90c53dfe8f219444e78e80aa (diff)
rename rna property Bone.use_hinge to use_inherit_rotate because use_hinge was inverted - Enabled by default but not a hinge.
this also matches 'use_inherit_scale'
Diffstat (limited to 'release/scripts/ui')
-rw-r--r--release/scripts/ui/properties_data_bone.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/ui/properties_data_bone.py b/release/scripts/ui/properties_data_bone.py
index 3ed05d914ed..a9defd7217f 100644
--- a/release/scripts/ui/properties_data_bone.py
+++ b/release/scripts/ui/properties_data_bone.py
@@ -163,7 +163,7 @@ class BONE_PT_relations(BoneButtonsPanel, bpy.types.Panel):
sub = col.column()
sub.active = (bone.parent is not None)
sub.prop(bone, "use_connect")
- sub.prop(bone, "use_hinge", text="Inherit Rotation")
+ sub.prop(bone, "use_inherit_rotate", text="Inherit Rotation")
sub.prop(bone, "use_inherit_scale", text="Inherit Scale")
sub = col.column()
sub.active = (not bone.parent or not bone.use_connect)