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:
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()