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:
authormeta-androcto <meta.androcto1@gmail.com>2017-06-08 12:47:23 +0300
committermeta-androcto <meta.androcto1@gmail.com>2017-06-08 12:47:23 +0300
commit85b44a34f7c0eaebf67a8d65bb234523a9262d5d (patch)
treead575c43c0a1016283071bc68ee03f57247f4440
parenta370618c8a57a07d39239fa6b33f56a0f40578e8 (diff)
mesh_tissue: close panels by default T50357
-rw-r--r--mesh_tissue/colors_groups_exchanger.py1
-rw-r--r--mesh_tissue/dual_mesh.py1
-rw-r--r--mesh_tissue/tessellate_numpy.py1
3 files changed, 3 insertions, 0 deletions
diff --git a/mesh_tissue/colors_groups_exchanger.py b/mesh_tissue/colors_groups_exchanger.py
index c2e45e6f..8bd47b46 100644
--- a/mesh_tissue/colors_groups_exchanger.py
+++ b/mesh_tissue/colors_groups_exchanger.py
@@ -270,6 +270,7 @@ class colors_groups_exchanger_panel(bpy.types.Panel):
bl_category = "Create"
bl_space_type = "VIEW_3D"
bl_region_type = "TOOLS"
+ bl_options = {'DEFAULT_CLOSED'}
#bl_context = "objectmode"
def draw(self, context):
diff --git a/mesh_tissue/dual_mesh.py b/mesh_tissue/dual_mesh.py
index a4610254..5a4a5d13 100644
--- a/mesh_tissue/dual_mesh.py
+++ b/mesh_tissue/dual_mesh.py
@@ -218,6 +218,7 @@ class dual_mesh_panel(bpy.types.Panel):
bl_space_type = "VIEW_3D"
bl_region_type = "TOOLS"
bl_context = (("objectmode"))
+ bl_options = {'DEFAULT_CLOSED'}
def draw(self, context):
layout = self.layout
diff --git a/mesh_tissue/tessellate_numpy.py b/mesh_tissue/tessellate_numpy.py
index 65afeee7..001a438d 100644
--- a/mesh_tissue/tessellate_numpy.py
+++ b/mesh_tissue/tessellate_numpy.py
@@ -1242,6 +1242,7 @@ class tessellate_panel(bpy.types.Panel):
bl_category = "Create"
bl_space_type = "VIEW_3D"
bl_region_type = "TOOLS"
+ bl_options = {'DEFAULT_CLOSED'}
#bl_context = "objectmode", "editmode"
def draw(self, context):