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 /add_advanced_objects_menu/copy2.py
parent54f2341bdee0e6e5dfacd65a38740f99996efa52 (diff)
addons: add missing text= keyword after label
Diffstat (limited to 'add_advanced_objects_menu/copy2.py')
-rw-r--r--add_advanced_objects_menu/copy2.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/add_advanced_objects_menu/copy2.py b/add_advanced_objects_menu/copy2.py
index 9806ad0d..14dd312f 100644
--- a/add_advanced_objects_menu/copy2.py
+++ b/add_advanced_objects_menu/copy2.py
@@ -110,11 +110,11 @@ class Copy2(Operator):
layout = self.layout
layout.prop(self, "copyfromobject")
- layout.label("to:")
+ layout.label(text="to:")
layout.prop(self, "copytype", expand=True)
- layout.label("Primary axis:")
+ layout.label(text="Primary axis:")
layout.prop(self, "priaxes", expand=True)
- layout.label("Secondary axis:")
+ layout.label(text="Secondary axis:")
layout.prop(self, "secaxes", expand=True)
if self.copytype == "E":
layout.prop(self, "edgescale")