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>2019-04-29 05:22:49 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-29 05:22:49 +0300
commite059588947d55de88c4472abd65b187da621cdfa (patch)
tree0469a059ec177a137c77a891e1ba64687481f200 /mocap
parent352254d5c84eec8b2ef1922e9ccec25516f6d8c2 (diff)
Fix T63955: label text not used as a keyword arg
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 cc2a9a2c..f040e0b1 100644
--- a/mocap/__init__.py
+++ b/mocap/__init__.py
@@ -295,7 +295,7 @@ class MocapPanel(bpy.types.Panel):
enduser_obj = bpy.context.active_object
performer_obj = [obj for obj in bpy.context.selected_objects if obj != enduser_obj]
if enduser_obj is None or len(performer_obj) != 1:
- layout.label("Select performer rig and target rig (as active)")
+ layout.label(text="Select performer rig and target rig (as active)")
else:
layout.operator("mocap.guessmapping", text="Guess Hierarchy Mapping")
labelRow = layout.row(align=True)