From 3b3ae2d2fb760c4111cebce82b8dbdd5ff250caf Mon Sep 17 00:00:00 2001 From: Brendon Murphy <meta.androcto1@gmail.com> Date: Sun, 16 Sep 2012 12:49:35 +0000 Subject: [PATCH] closed panels by default [[Split portion of a mixed commit.]] --- mesh_looptools.py | 1 + object_cloud_gen.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/mesh_looptools.py b/mesh_looptools.py index ffa4027e7..81f972cf5 100644 --- a/mesh_looptools.py +++ b/mesh_looptools.py @@ -3627,6 +3627,7 @@ class VIEW3D_PT_tools_looptools(bpy.types.Panel): bl_region_type = 'TOOLS' bl_context = "mesh_edit" bl_label = "LoopTools" + bl_options = {'DEFAULT_CLOSED'} def draw(self, context): layout = self.layout diff --git a/object_cloud_gen.py b/object_cloud_gen.py index 149eea1c0..c71764e49 100644 --- a/object_cloud_gen.py +++ b/object_cloud_gen.py @@ -301,9 +301,9 @@ def getActionToDo(obj): class VIEW3D_PT_tools_cloud(Panel): bl_space_type = 'VIEW_3D' bl_region_type = 'TOOLS' - bl_label = "Cloud Generator" bl_context = "objectmode" + bl_options = {'DEFAULT_CLOSED'} def draw(self, context): active_obj = context.active_object -- GitLab