[Bf-extensions-cvs] [9c1b725] master: fix for toolshelf display

Brendon Murphy noreply at git.blender.org
Sun Jul 6 12:35:57 CEST 2014


Commit: 9c1b7252bb510cc527c4ef2fd5aa3b586d095e98
Author: Brendon Murphy
Date:   Sun Jul 6 17:54:10 2014 +1000
https://developer.blender.org/rBAC9c1b7252bb510cc527c4ef2fd5aa3b586d095e98

fix for toolshelf display

Signed-off-by: Brendon Murphy <meta.androcto1 at gmail.com>

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

M	particle_hair_lab.py

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

diff --git a/particle_hair_lab.py b/particle_hair_lab.py
index 9ae679f..0ad0ca8 100644
--- a/particle_hair_lab.py
+++ b/particle_hair_lab.py
@@ -20,7 +20,7 @@ bl_info = {
     "name": "Grass Lab",
     "author": "Ondrej Raha(lokhorn), meta-androcto",
     "version": (0, 5),
-    "blender": (2, 60, 0),
+    "blender": (2, 71, 0),
     "location": "View3D > Tool Shelf > Grass Preset Panel",
     "description": "Creates particle grass with material",
     "warning": "",
@@ -65,6 +65,7 @@ class grassLabPanel(bpy.types.Panel):
     bl_label = "Grass Lab"
     bl_context = "objectmode"
     bl_options = {'DEFAULT_CLOSED'}
+    bl_category = "Addons"
 
     def draw(self, context):
         active_obj = bpy.context.active_object
@@ -525,6 +526,7 @@ class HairLabPanel(bpy.types.Panel):
     bl_label = "Hair Lab"
     bl_context = "objectmode"
     bl_options = {'DEFAULT_CLOSED'}
+    bl_category = "Addons"
 
     def draw(self, context):
         active_obj = bpy.context.active_object
@@ -977,6 +979,7 @@ class FurLabPanel(bpy.types.Panel):
     bl_label = "Fur Lab"
     bl_context = "objectmode"
     bl_options = {'DEFAULT_CLOSED'}
+    bl_category = "Addons"
 
     def draw(self, context):
         active_obj = bpy.context.active_object



More information about the Bf-extensions-cvs mailing list