[Bf-extensions-cvs] [2600e2f2] blender2.8: Rigify UI: Move operators to sidebar

Dalai Felinto noreply at git.blender.org
Fri Oct 26 19:08:25 CEST 2018


Commit: 2600e2f26320dbcc142f0eafa7e0e82a3074161c
Author: Dalai Felinto
Date:   Fri Oct 26 14:07:26 2018 -0300
Branches: blender2.8
https://developer.blender.org/rBA2600e2f26320dbcc142f0eafa7e0e82a3074161c

Rigify UI: Move operators to sidebar

Since some recent change in 2.8 the UI for rigify is no longer working.

Note: if your object has ANY custom property, the custom property shows as
a Misc. category, it is not particular to rigify, so I will not bother with
this here.

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

M	rigify/legacy/ui.py
M	rigify/rot_mode.py
M	rigify/ui.py

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

diff --git a/rigify/legacy/ui.py b/rigify/legacy/ui.py
index 2671108b..f04ec335 100644
--- a/rigify/legacy/ui.py
+++ b/rigify/legacy/ui.py
@@ -200,9 +200,9 @@ class BONE_PT_rigify_buttons(bpy.types.Panel):
 
 class VIEW3D_PT_tools_rigify_dev(bpy.types.Panel):
     bl_label = "Rigify Dev Tools"
-    bl_category = 'Tools'
     bl_space_type = 'VIEW_3D'
-    bl_region_type = 'TOOLS'
+    bl_region_type = 'UI'
+    bl_category = 'View'
 
     @classmethod
     def poll(cls, context):
diff --git a/rigify/rot_mode.py b/rigify/rot_mode.py
index 8129040b..9abfecea 100644
--- a/rigify/rot_mode.py
+++ b/rigify/rot_mode.py
@@ -223,8 +223,8 @@ convert = convert()
 
 class ToolsPanel(bpy.types.Panel):
     bl_space_type = 'VIEW_3D'
-    bl_region_type = 'TOOLS'
-    bl_category = "Tools"
+    bl_region_type = 'UI'
+    bl_category = 'View'
     bl_context = "posemode"
     bl_label = 'Rigify Quat/Euler Converter'
 
diff --git a/rigify/ui.py b/rigify/ui.py
index 2effb58f..77398ff0 100644
--- a/rigify/ui.py
+++ b/rigify/ui.py
@@ -633,9 +633,9 @@ class BONE_PT_rigify_buttons(bpy.types.Panel):
 
 class VIEW3D_PT_tools_rigify_dev(bpy.types.Panel):
     bl_label = "Rigify Dev Tools"
-    bl_category = 'Tools'
     bl_space_type = 'VIEW_3D'
-    bl_region_type = 'TOOLS'
+    bl_region_type = 'UI'
+    bl_category = 'View'
 
     @classmethod
     def poll(cls, context):
@@ -657,10 +657,10 @@ class VIEW3D_PT_tools_rigify_dev(bpy.types.Panel):
 
 class VIEW3D_PT_rigify_animation_tools(bpy.types.Panel):
     bl_label = "Rigify Animation Tools"
-    bl_category = 'Tools'
     bl_context = "posemode"
     bl_space_type = 'VIEW_3D'
-    bl_region_type = 'TOOLS'
+    bl_region_type = 'UI'
+    bl_category = 'View'
 
     @classmethod
     def poll(cls, context):



More information about the Bf-extensions-cvs mailing list