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 /mesh_auto_mirror.py
parent54f2341bdee0e6e5dfacd65a38740f99996efa52 (diff)
addons: add missing text= keyword after label
Diffstat (limited to 'mesh_auto_mirror.py')
-rw-r--r--mesh_auto_mirror.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesh_auto_mirror.py b/mesh_auto_mirror.py
index f9a8aa49..bffa9478 100644
--- a/mesh_auto_mirror.py
+++ b/mesh_auto_mirror.py
@@ -190,7 +190,7 @@ class BisectMirror(Panel):
if obj and obj.type == 'MESH':
layout.operator("object.automirror", icon="MOD_MIRROR")
- layout.label("Options:")
+ layout.label(text="Options:")
layout.prop(auto_m, "axis", text="Mirror Axis", expand=True)
layout.prop(auto_m, "orientation", text="Orientation")
layout.prop(auto_m, "threshold", text="Threshold")