[Bf-extensions-cvs] [9abf009f] master: Rigify: move the generated panels to the Item tab.

Alexander Gavrilov noreply at git.blender.org
Sun May 5 19:12:08 CEST 2019


Commit: 9abf009f0a42b3b7260d2e90031a3f74e20f1f54
Author: Alexander Gavrilov
Date:   Sun May 5 19:40:07 2019 +0300
Branches: master
https://developer.blender.org/rBA9abf009f0a42b3b7260d2e90031a3f74e20f1f54

Rigify: move the generated panels to the Item tab.

Since they are specific to the selected armature/bone, they
match that tab better, and the animator would want to have
them next to the built-in transforms and custom properties.

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

M	rigify/rig_ui_template.py

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

diff --git a/rigify/rig_ui_template.py b/rigify/rig_ui_template.py
index 87eef0d8..e2070857 100644
--- a/rigify/rig_ui_template.py
+++ b/rigify/rig_ui_template.py
@@ -830,7 +830,7 @@ class RigUI(bpy.types.Panel):
     bl_region_type = 'UI'
     bl_label = "Rig Main Properties"
     bl_idname = "VIEW3D_PT_rig_ui_" + rig_id
-    bl_category = 'View'
+    bl_category = 'Item'
 
     @classmethod
     def poll(self, context):
@@ -874,7 +874,7 @@ class RigLayers(bpy.types.Panel):
     bl_region_type = 'UI'
     bl_label = "Rig Layers"
     bl_idname = "VIEW3D_PT_rig_layers_" + rig_id
-    bl_category = 'View'
+    bl_category = 'Item'
 
     @classmethod
     def poll(self, context):



More information about the Bf-extensions-cvs mailing list