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:
authorCampbell Barton <ideasman42@gmail.com>2019-04-29 05:22:49 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-29 05:22:49 +0300
commite059588947d55de88c4472abd65b187da621cdfa (patch)
tree0469a059ec177a137c77a891e1ba64687481f200 /materials_library_vx
parent352254d5c84eec8b2ef1922e9ccec25516f6d8c2 (diff)
Fix T63955: label text not used as a keyword arg
Diffstat (limited to 'materials_library_vx')
-rw-r--r--materials_library_vx/__init__.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/materials_library_vx/__init__.py b/materials_library_vx/__init__.py
index 17e3934e..0e9cf5e7 100644
--- a/materials_library_vx/__init__.py
+++ b/materials_library_vx/__init__.py
@@ -930,8 +930,8 @@ class MATLIB_OT_operator(Operator):
layout = self.layout
#cmd = LIBRARY_ADD
if self.cmd == "LIBRARY_ADD":
- #layout.label("Select a blend file as library or")
- #layout.label("Type a name to create a new library.")
+ #layout.label(text="Select a blend file as library or")
+ #layout.label(text="Type a name to create a new library.")
layout.prop(self, "category", text="Library")
elif self.cmd == "FILTER_ADD":
layout.prop(self, "category")
@@ -1191,15 +1191,15 @@ class MATLIB_PT_vxPanel(Panel):
# if (matlib.current_library):
# row.label(matlib.current_library.name)
# else:
-# row.label("Library not found!.")
+# row.label(text="Library not found!.")
"""
classes = [
matlibMaterials,
matlibProperties,
EmptyGroup,
-MATLIB_PT_vxPanel,
-MATLIB_OT_operator,
-MATLIB_MT_LibsMenu,
+MATLIB_PT_vxPanel,
+MATLIB_OT_operator,
+MATLIB_MT_LibsMenu,
MATLIB_MT_CatsMenu
]
#print(bpy.context.scene)