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:
authorNBurn <7nburn@gmail.com>2019-01-23 23:03:09 +0300
committerNBurn <7nburn@gmail.com>2019-01-23 23:03:09 +0300
commit49c1b409286937d00a63fbf4cfb1f820a75a80c0 (patch)
treee85be0be22a3929aa28e4f3b4d3b16741eb26ebc /animation_animall.py
parent54f2341bdee0e6e5dfacd65a38740f99996efa52 (diff)
addons: add missing text= keyword after label
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):