Skip to content
Snippets Groups Projects
Commit 85b44a34 authored by meta-androcto's avatar meta-androcto
Browse files

mesh_tissue: close panels by default T50357

parent a370618c
No related branches found
No related tags found
No related merge requests found
...@@ -270,6 +270,7 @@ class colors_groups_exchanger_panel(bpy.types.Panel): ...@@ -270,6 +270,7 @@ class colors_groups_exchanger_panel(bpy.types.Panel):
bl_category = "Create" bl_category = "Create"
bl_space_type = "VIEW_3D" bl_space_type = "VIEW_3D"
bl_region_type = "TOOLS" bl_region_type = "TOOLS"
bl_options = {'DEFAULT_CLOSED'}
#bl_context = "objectmode" #bl_context = "objectmode"
def draw(self, context): def draw(self, context):
......
...@@ -218,6 +218,7 @@ class dual_mesh_panel(bpy.types.Panel): ...@@ -218,6 +218,7 @@ class dual_mesh_panel(bpy.types.Panel):
bl_space_type = "VIEW_3D" bl_space_type = "VIEW_3D"
bl_region_type = "TOOLS" bl_region_type = "TOOLS"
bl_context = (("objectmode")) bl_context = (("objectmode"))
bl_options = {'DEFAULT_CLOSED'}
def draw(self, context): def draw(self, context):
layout = self.layout layout = self.layout
......
...@@ -1242,6 +1242,7 @@ class tessellate_panel(bpy.types.Panel): ...@@ -1242,6 +1242,7 @@ class tessellate_panel(bpy.types.Panel):
bl_category = "Create" bl_category = "Create"
bl_space_type = "VIEW_3D" bl_space_type = "VIEW_3D"
bl_region_type = "TOOLS" bl_region_type = "TOOLS"
bl_options = {'DEFAULT_CLOSED'}
#bl_context = "objectmode", "editmode" #bl_context = "objectmode", "editmode"
def draw(self, context): def draw(self, context):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment