[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [3746] closed panels by default

Brendon Murphy meta.androcto1 at gmail.com
Sun Sep 16 13:31:28 CEST 2012


Revision: 3746
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-extensions&revision=3746
Author:   meta-androcto
Date:     2012-09-16 11:31:28 +0000 (Sun, 16 Sep 2012)
Log Message:
-----------
closed panels by default

Modified Paths:
--------------
    contrib/py/scripts/addons/animation_motion_trail.py
    contrib/py/scripts/addons/curve_tools.py
    trunk/py/scripts/addons/animation_animall.py

Modified: contrib/py/scripts/addons/animation_motion_trail.py
===================================================================
--- contrib/py/scripts/addons/animation_motion_trail.py	2012-09-16 11:01:10 UTC (rev 3745)
+++ contrib/py/scripts/addons/animation_motion_trail.py	2012-09-16 11:31:28 UTC (rev 3746)
@@ -1551,7 +1551,7 @@
     bl_space_type = 'VIEW_3D'
     bl_region_type = 'TOOLS'
     bl_label = "Motion Trail"
-
+    bl_options = {'DEFAULT_CLOSED'}
     @classmethod
     def poll(cls, context):
         if not context.active_object:

Modified: contrib/py/scripts/addons/curve_tools.py
===================================================================
--- contrib/py/scripts/addons/curve_tools.py	2012-09-16 11:01:10 UTC (rev 3745)
+++ contrib/py/scripts/addons/curve_tools.py	2012-09-16 11:31:28 UTC (rev 3746)
@@ -1259,7 +1259,7 @@
     bl_region_type = "TOOLS"
     #bl_options = {'REGISTER', 'UNDO'}
     #bl_context = "data"
-
+    bl_options = {'DEFAULT_CLOSED'}
     steps = IntProperty(min=2, default = 12)
 
     @classmethod

Modified: trunk/py/scripts/addons/animation_animall.py
===================================================================
--- trunk/py/scripts/addons/animation_animall.py	2012-09-16 11:01:10 UTC (rev 3745)
+++ trunk/py/scripts/addons/animation_animall.py	2012-09-16 11:31:28 UTC (rev 3746)
@@ -92,7 +92,7 @@
     bl_space_type = 'VIEW_3D'
     bl_region_type = 'TOOLS'
     bl_label = 'AnimAll'
-
+    bl_options = {'DEFAULT_CLOSED'}
     # show this addon only in the Camera-Data-Panel
     @classmethod
     def poll(self, context):



More information about the Bf-extensions-cvs mailing list