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 /io_export_paper_model.py
parent54f2341bdee0e6e5dfacd65a38740f99996efa52 (diff)
addons: add missing text= keyword after label
Diffstat (limited to 'io_export_paper_model.py')
-rw-r--r--io_export_paper_model.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/io_export_paper_model.py b/io_export_paper_model.py
index 1c471a8f..a5818339 100644
--- a/io_export_paper_model.py
+++ b/io_export_paper_model.py
@@ -2379,7 +2379,7 @@ class VIEW3D_PT_paper_model_tools(bpy.types.Panel):
layout.operator("export_mesh.paper_model")
col = layout.column(align=True)
- col.label("Customization:")
+ col.label(text="Customization:")
col.operator("mesh.unfold")
if context.mode == 'EDIT_MESH':
@@ -2432,7 +2432,7 @@ class VIEW3D_PT_paper_model_islands(bpy.types.Panel):
row.prop(list_item, "abbreviation")
else:
layout.label(text="Not unfolded")
- layout.box().label("Use the 'Unfold' tool")
+ layout.box().label(text="Use the 'Unfold' tool")
sub = layout.column(align=True)
sub.active = bool(mesh and mesh.paper_island_list)
sub.prop(sce.paper_model, "display_islands", icon='RESTRICT_VIEW_OFF')