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_cell
parent54f2341bdee0e6e5dfacd65a38740f99996efa52 (diff)
addons: add missing text= keyword after label
Diffstat (limited to 'object_fracture_cell')
-rw-r--r--object_fracture_cell/__init__.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/object_fracture_cell/__init__.py b/object_fracture_cell/__init__.py
index 6f46d317..c1220374 100644
--- a/object_fracture_cell/__init__.py
+++ b/object_fracture_cell/__init__.py
@@ -475,7 +475,7 @@ class FractureCell(Operator):
layout = self.layout
box = layout.box()
col = box.column()
- col.label("Point Source")
+ col.label(text="Point Source")
rowsub = col.row()
rowsub.prop(self, "source")
rowsub = col.row()
@@ -486,7 +486,7 @@ class FractureCell(Operator):
box = layout.box()
col = box.column()
- col.label("Recursive Shatter")
+ col.label(text="Recursive Shatter")
rowsub = col.row(align=True)
rowsub.prop(self, "recursion")
rowsub.prop(self, "recursion_source_limit")
@@ -497,7 +497,7 @@ class FractureCell(Operator):
box = layout.box()
col = box.column()
- col.label("Mesh Data")
+ col.label(text="Mesh Data")
rowsub = col.row()
rowsub.prop(self, "use_smooth_faces")
rowsub.prop(self, "use_sharp_edges")
@@ -516,7 +516,7 @@ class FractureCell(Operator):
box = layout.box()
col = box.column()
- col.label("Physics")
+ col.label(text="Physics")
rowsub = col.row(align=True)
rowsub.prop(self, "mass_mode")
rowsub.prop(self, "mass")
@@ -524,14 +524,14 @@ class FractureCell(Operator):
box = layout.box()
col = box.column()
- col.label("Object")
+ col.label(text="Object")
rowsub = col.row(align=True)
rowsub.prop(self, "use_recenter")
box = layout.box()
col = box.column()
- col.label("Scene")
+ col.label(text="Scene")
rowsub = col.row(align=True)
rowsub.prop(self, "use_layer_index")
rowsub.prop(self, "use_layer_next")
@@ -539,7 +539,7 @@ class FractureCell(Operator):
box = layout.box()
col = box.column()
- col.label("Debug")
+ col.label(text="Debug")
rowsub = col.row(align=True)
rowsub.prop(self, "use_debug_redraw")
rowsub.prop(self, "use_debug_points")
@@ -548,7 +548,7 @@ class FractureCell(Operator):
def menu_func(self, context):
layout = self.layout
- layout.label("Cell Fracture:")
+ layout.label(text="Cell Fracture:")
layout.operator("object.add_fracture_cell_objects",
text="Cell Fracture")