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_online_sketchfab
parent54f2341bdee0e6e5dfacd65a38740f99996efa52 (diff)
addons: add missing text= keyword after label
Diffstat (limited to 'io_online_sketchfab')
-rw-r--r--io_online_sketchfab/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/io_online_sketchfab/__init__.py b/io_online_sketchfab/__init__.py
index 72920255..5448d470 100644
--- a/io_online_sketchfab/__init__.py
+++ b/io_online_sketchfab/__init__.py
@@ -308,12 +308,12 @@ class VIEW3D_PT_sketchfab(Panel):
load_token()
layout = self.layout
- layout.label("Export:")
+ layout.label(text="Export:")
col = layout.box().column(align=True)
col.prop(props, "models")
col.prop(props, "lights")
- layout.label("Model info:")
+ layout.label(text="Model info:")
col = layout.box().column(align=True)
col.prop(props, "title")
col.prop(props, "description")
@@ -322,7 +322,7 @@ class VIEW3D_PT_sketchfab(Panel):
if props.private:
col.prop(props, "password")
- layout.label("Sketchfab account:")
+ layout.label(text="Sketchfab account:")
col = layout.box().column(align=True)
col.prop(props, "token")
row = col.row()