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:
authorBrendon Murphy <meta.androcto1@gmail.com>2012-09-16 16:49:35 +0400
committerBrendon Murphy <meta.androcto1@gmail.com>2012-09-16 16:49:35 +0400
commit3b3ae2d2fb760c4111cebce82b8dbdd5ff250caf (patch)
treea69e551cf2ca4a8ab3540411aec015de6b4b704d
parentff4b18f6ad88185a797d42843e79e88b112685e1 (diff)
closed panels by default
[[Split portion of a mixed commit.]]
-rw-r--r--mesh_looptools.py1
-rw-r--r--object_cloud_gen.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/mesh_looptools.py b/mesh_looptools.py
index ffa4027e..81f972cf 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 149eea1c..c71764e4 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