[Bf-extensions-cvs] [9365cecb] blender2.8: Rigify: add missing bl_category to the generated script template.

Alexander Gavrilov noreply at git.blender.org
Wed Nov 14 18:55:34 CET 2018


Commit: 9365cecb2fc64a61a9d9ec14e0f05118753a6fb7
Author: Alexander Gavrilov
Date:   Wed Nov 14 20:54:01 2018 +0300
Branches: blender2.8
https://developer.blender.org/rBA9365cecb2fc64a61a9d9ec14e0f05118753a6fb7

Rigify: add missing bl_category to the generated script template.

===================================================================

M	rigify/rig_ui_template.py

===================================================================

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



More information about the Bf-extensions-cvs mailing list