[Bf-extensions-cvs] [7e6fe7b] master: Fix: update for new tabs

Eugenio Pignataro noreply at git.blender.org
Wed Feb 5 15:04:44 CET 2014


Commit: 7e6fe7b1e20799e6880667a40a510cb5180d357d
Author: Eugenio Pignataro
Date:   Wed Feb 5 11:04:29 2014 -0300
https://developer.blender.org/rBAC7e6fe7b1e20799e6880667a40a510cb5180d357d

Fix: update for new tabs

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

M	oscurart_tools/__init__.py

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

diff --git a/oscurart_tools/__init__.py b/oscurart_tools/__init__.py
index b3f335e..abd1223 100644
--- a/oscurart_tools/__init__.py
+++ b/oscurart_tools/__init__.py
@@ -133,6 +133,7 @@ class OscPollOverrides():
 class OscPanelObject(OscPollObject, bpy.types.Panel):
     bl_idname = "Oscurart Object Tools"
     bl_label = "Object Tools"
+    bl_category = "Oscurart Tools"
 
     def draw(self, context):
         active_obj = context.active_object
@@ -161,6 +162,7 @@ class OscPanelObject(OscPollObject, bpy.types.Panel):
 class OscPanelMesh(OscPollMesh, bpy.types.Panel):
     bl_idname = "Oscurart Mesh Tools"
     bl_label = "Mesh Tools"
+    bl_category = "Oscurart Tools"
 
     def draw(self, context):
         active_obj = context.active_object
@@ -186,6 +188,7 @@ class OscPanelMesh(OscPollMesh, bpy.types.Panel):
 class OscPanelShapes(OscPollShapes, bpy.types.Panel):
     bl_idname = "Oscurart Shapes Tools"
     bl_label = "Shapes Tools"
+    bl_category = "Oscurart Tools"
 
     def draw(self, context):
         active_obj = context.active_object
@@ -203,6 +206,7 @@ class OscPanelShapes(OscPollShapes, bpy.types.Panel):
 class OscPanelRender(OscPollRender, bpy.types.Panel):
     bl_idname = "Oscurart Render Tools"
     bl_label = "Render Tools"
+    bl_category = "Oscurart Tools"
 
     def draw(self, context):
         active_obj = context.active_object
@@ -238,6 +242,7 @@ class OscPanelRender(OscPollRender, bpy.types.Panel):
 class OscPanelFiles(OscPollFiles, bpy.types.Panel):
     bl_idname = "Oscurart Files Tools"
     bl_label = "Files Tools"
+    bl_category = "Oscurart Tools"
 
     def draw(self, context):
         active_obj = context.active_object
@@ -255,6 +260,7 @@ class OscPanelFiles(OscPollFiles, bpy.types.Panel):
 class OscPanelOverrides(OscPollOverrides, bpy.types.Panel):
     bl_idname = "Oscurart Overrides"
     bl_label = "Overrides Tools"
+    bl_category = "Oscurart Tools"
 
     def draw(self, context):
         layout = self.layout
@@ -287,4 +293,4 @@ def unregister():
 
 
 if __name__ == "__main__":
-    register()
+    register()
\ No newline at end of file



More information about the Bf-extensions-cvs mailing list