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:
authorAlexander Gavrilov <angavrilov@gmail.com>2018-11-14 20:54:01 +0300
committerAlexander Gavrilov <angavrilov@gmail.com>2018-11-14 20:54:12 +0300
commit9365cecb2fc64a61a9d9ec14e0f05118753a6fb7 (patch)
treed7cd041734c97bdf3e218b21d74ac038d5a4c9c6 /rigify/rig_ui_template.py
parent095b6435ee07e87fa500d9072e5e4c85153e317e (diff)
Rigify: add missing bl_category to the generated script template.
Diffstat (limited to 'rigify/rig_ui_template.py')
-rw-r--r--rigify/rig_ui_template.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/rigify/rig_ui_template.py b/rigify/rig_ui_template.py
index 8031ff3b..aec675e3 100644
--- a/rigify/rig_ui_template.py
+++ b/rigify/rig_ui_template.py
@@ -755,6 +755,7 @@ class RigUI(bpy.types.Panel):
bl_region_type = 'UI'
bl_label = "Rig Main Properties"
bl_idname = rig_id + "_PT_rig_ui"
+ bl_category = 'View'
@classmethod
def poll(self, context):
@@ -798,6 +799,7 @@ class RigLayers(bpy.types.Panel):
bl_region_type = 'UI'
bl_label = "Rig Layers"
bl_idname = rig_id + "_PT_rig_layers"
+ bl_category = 'View'
@classmethod
def poll(self, context):