Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2013-07-02 23:47:26 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2013-07-02 23:47:26 +0400
commit518ac70ae63b6ec3ea971223bbcb6055b0d6825d (patch)
treecb42dcd9d97b784115e1406007cb42079a6e04a8 /mocap/__init__.py
parent2580c2b6fa0ce8c711f4b13f6ffc07ec862dcf2f (diff)
Fix #35953: motion capture addon twist fix button not displayed correctly.
Diffstat (limited to 'mocap/__init__.py')
-rw-r--r--mocap/__init__.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/mocap/__init__.py b/mocap/__init__.py
index 1681e0ab..92dd8332 100644
--- a/mocap/__init__.py
+++ b/mocap/__init__.py
@@ -286,7 +286,7 @@ class MocapPanel(bpy.types.Panel):
if enduser_obj is None or len(performer_obj) != 1:
layout.label("Select performer rig and target rig (as active)")
else:
- layout.operator("mocap.guessmapping", text="Guess Hiearchy Mapping")
+ layout.operator("mocap.guessmapping", text="Guess Hierarchy Mapping")
labelRow = layout.row(align=True)
labelRow.label("Performer Rig")
labelRow.label("End user Rig")
@@ -304,7 +304,6 @@ class MocapPanel(bpy.types.Panel):
mapCol.scale_x = 2
selectCol = MappingRow.column(align=True)
twistCol = MappingRow.column(align=True)
- twistCol.scale_x = 0.1
IKCol = MappingRow.column(align=True)
IKCol.scale_x = 0.3
IKLabel = MappingRow.column(align=True)