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-06-30 15:47:06 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-06-30 15:47:06 +0400
commit052ba428badc6fda8ded5fdc84de6f6984f1ab3d (patch)
treebac46ac171cfbb2dd060a9bece72f46f9120c4c2 /mocap
parent54ac401f1894c860393bcc8a3e878f03a0df4037 (diff)
update for changes in the bmesh api
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 225a304e..197967e6 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()