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:
authorDalai Felinto <dfelinto@gmail.com>2018-10-26 20:07:26 +0300
committerDalai Felinto <dfelinto@gmail.com>2018-10-26 20:07:28 +0300
commit2600e2f26320dbcc142f0eafa7e0e82a3074161c (patch)
tree7c1c63b670fb09fb6f13d11428fcfe858a85f1fb /rigify/ui.py
parent2e14c2aa69726b472f8758f62ad839eddaf63bfe (diff)
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.
Diffstat (limited to 'rigify/ui.py')
-rw-r--r--rigify/ui.py8
1 files changed, 4 insertions, 4 deletions
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):