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_extra_tools/vertex_align.py
parent54f2341bdee0e6e5dfacd65a38740f99996efa52 (diff)
addons: add missing text= keyword after label
Diffstat (limited to 'mesh_extra_tools/vertex_align.py')
-rw-r--r--mesh_extra_tools/vertex_align.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesh_extra_tools/vertex_align.py b/mesh_extra_tools/vertex_align.py
index 59aecfac..eb66d747 100644
--- a/mesh_extra_tools/vertex_align.py
+++ b/mesh_extra_tools/vertex_align.py
@@ -117,7 +117,7 @@ class Vertex_align_original(Operator):
def draw(self, context):
layout = self.layout
- layout.label("Axis:")
+ layout.label(text="Axis:")
row = layout.row(align=True)
row.prop(context.scene.mesh_extra_tools, "vert_align_axis",
@@ -233,7 +233,7 @@ class Vertex_align_coord_menu(Operator):
layout = self.layout
if self.using_store(context) and self.is_not_undo:
- layout.label("Using Stored Coordinates", icon="INFO")
+ layout.label(text="Using Stored Coordinates", icon="INFO")
row = layout.split(0.25)
row.prop(self, "use_axis_coord", index=0, text="X")