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 /archimesh/achm_column_maker.py
parent54f2341bdee0e6e5dfacd65a38740f99996efa52 (diff)
addons: add missing text= keyword after label
Diffstat (limited to 'archimesh/achm_column_maker.py')
-rw-r--r--archimesh/achm_column_maker.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/archimesh/achm_column_maker.py b/archimesh/achm_column_maker.py
index e9b66639..b9f5936e 100644
--- a/archimesh/achm_column_maker.py
+++ b/archimesh/achm_column_maker.py
@@ -244,7 +244,7 @@ class AchmColumn(bpy.types.Operator):
# Imperial units warning
if bpy.context.scene.unit_settings.system == "IMPERIAL":
row = layout.row()
- row.label("Warning: Imperial units not supported", icon='COLOR_RED')
+ row.label(text="Warning: Imperial units not supported", icon='COLOR_RED')
box = layout.box()
box.prop(self, 'model')
# Circular
@@ -311,7 +311,7 @@ class AchmColumn(bpy.types.Operator):
row.prop(self, 'array_num_x')
row.prop(self, 'array_num_y')
if self.arc_top is True:
- box.label("Use arch radio and thickness to set distances")
+ box.label(text="Use arch radio and thickness to set distances")
if self.arc_top is False:
row = box.row()
@@ -327,7 +327,7 @@ class AchmColumn(bpy.types.Operator):
box.prop(self, 'crt_mat')
else:
row = layout.row()
- row.label("Warning: Operator does not work in local view mode", icon='ERROR')
+ row.label(text="Warning: Operator does not work in local view mode", icon='ERROR')
# -----------------------------------------------------
# Execute