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_fracture_crack
parent54f2341bdee0e6e5dfacd65a38740f99996efa52 (diff)
addons: add missing text= keyword after label
Diffstat (limited to 'object_fracture_crack')
-rw-r--r--object_fracture_crack/operator.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/object_fracture_crack/operator.py b/object_fracture_crack/operator.py
index 67217e9a..0620a308 100644
--- a/object_fracture_crack/operator.py
+++ b/object_fracture_crack/operator.py
@@ -141,19 +141,19 @@ class crackitPanel(Panel):
col.prop(crackit, "fracture_scalez")
col = box.column(align=True)
- col.label("Settings:")
+ col.label(text="Settings:")
col.prop(crackit, "fracture_div")
col.prop(crackit, "fracture_margin")
col = box.column(align=True)
- col.label("Extrude:")
+ col.label(text="Extrude:")
col.prop(crackit, "extrude_offset")
col.prop(crackit, "extrude_random")
# material Preset:
box = layout.box()
row = box.row()
- row.label("Material Preset:")
+ row.label(text="Material Preset:")
row_sub = row.row()
row_sub.prop(crackit, "material_lib_name", text="",
toggle=True, icon="LONGDISPLAY")