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:
Diffstat (limited to 'animation_animall.py')
-rw-r--r--animation_animall.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/animation_animall.py b/animation_animall.py
index de02192c..d6c58cd0 100644
--- a/animation_animall.py
+++ b/animation_animall.py
@@ -191,20 +191,20 @@ class VIEW3D_PT_animall(Panel):
row = split.row()
if ShapeKeyIndex > 0:
- row.label(ShapeKey.name, icon="SHAPEKEY_DATA")
+ row.label(text=ShapeKey.name, icon="SHAPEKEY_DATA")
row.prop(ShapeKey, "value", text="")
row.prop(Obj, "show_only_shape_key", text="")
if ShapeKey.value < 1:
row = layout.row()
- row.label('Maybe set "%s" to 1.0?' % ShapeKey.name, icon="INFO")
+ row.label(text='Maybe set "%s" to 1.0?' % ShapeKey.name, icon="INFO")
elif ShapeKey:
- row.label("Can not key on Basis Shape", icon="ERROR")
+ row.label(text="Can not key on Basis Shape", icon="ERROR")
else:
- row.label("No active Shape Key", icon="ERROR")
+ row.label(text="No active Shape Key", icon="ERROR")
if context.window_manager.key_points and context.window_manager.key_shape:
row = layout.row()
- row.label('"Points" and "Shape" are redundant?', icon="INFO")
+ row.label(text='"Points" and "Shape" are redundant?', icon="INFO")
class ANIM_OT_insert_keyframe_animall(Operator):