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 /object_skinify.py
parent54f2341bdee0e6e5dfacd65a38740f99996efa52 (diff)
addons: add missing text= keyword after label
Diffstat (limited to 'object_skinify.py')
-rw-r--r--object_skinify.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/object_skinify.py b/object_skinify.py
index 010ebdbf..795492ad 100644
--- a/object_skinify.py
+++ b/object_skinify.py
@@ -684,12 +684,12 @@ class BONE_PT_custom_shape(Panel):
row.operator("object.skinify_rig", text="Add Shape", icon='BONE_DATA')
split = layout.split(percentage=0.3)
- split.label("Thickness:")
+ split.label(text="Thickness:")
split.prop(scn, "thickness", text="Body", icon='MOD_SKIN')
split.prop(scn, "finger_thickness", text="Fingers", icon='HAND')
split = layout.split(percentage=0.3)
- split.label("Mesh Density:")
+ split.label(text="Mesh Density:")
split.prop(scn, "sub_level", icon='MESH_ICOSPHERE')
row = layout.row()