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
path: root/mocap
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-07-29 16:06:18 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-07-29 16:06:18 +0400
commitafdec492ceb51e77c2ac38bc584c7c69203c9257 (patch)
treeb929704574e920b4bd5fa12477eea49c259eae4c /mocap
parent2c092f48975ff99b5ac1d46ccca5b825c1b8aa93 (diff)
style cleanup
Diffstat (limited to 'mocap')
-rw-r--r--mocap/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mocap/__init__.py b/mocap/__init__.py
index e6a00f18..4cca6b3e 100644
--- a/mocap/__init__.py
+++ b/mocap/__init__.py
@@ -370,7 +370,7 @@ class MocapConstraintsPanel(bpy.types.Panel):
headerRow.operator("mocap.removeconstraint", text="", icon='X', emboss=False).constraint = i
if m_constraint.show_expanded:
box.separator()
- box.prop_search(m_constraint, 'constrained_bone', enduser_obj.pose, "bones", icon='BONE_DATA',text="")
+ box.prop_search(m_constraint, 'constrained_bone', enduser_obj.pose, "bones", icon='BONE_DATA', text="")
if m_constraint.type == "distance" or m_constraint.type == "point":
box.prop_search(m_constraint, 'constrained_boneB', enduser_obj.pose, "bones", icon='CONSTRAINT_BONE')
frameRow = box.row()