[Bf-extensions-cvs] [85596da] master: AnimAll: Update location description and open by default, now that we have tabs in toolbar there's no need to make space

Daniel Salazar noreply at git.blender.org
Sun Jan 12 04:25:05 CET 2014


Commit: 85596dadde943575db642b21d73b390822e90bae
Author: Daniel Salazar
Date:   Sat Jan 11 21:23:50 2014 -0600
https://developer.blender.org/rBA85596dadde943575db642b21d73b390822e90bae

AnimAll: Update location description and open by default, now that we have tabs in toolbar there's no need to make space

===================================================================

M	animation_animall.py

===================================================================

diff --git a/animation_animall.py b/animation_animall.py
index 542f492..5373e1b 100644
--- a/animation_animall.py
+++ b/animation_animall.py
@@ -21,7 +21,7 @@ bl_info = {
     'author': 'Daniel Salazar <zanqdo at gmail.com>',
     'version': (0, 7),
     "blender": (2, 69, 7),
-    'location': 'Tool Shelf > AnimAll panel',
+    'location': 'Tool bar > Animation tab > AnimAll',
     'description': 'Allows animation of mesh, lattice, curve and surface data',
     'warning': '',
     'wiki_url': 'http://wiki.blender.org/index.php/Extensions:2.6/Py/Scripts/Animation/AnimAll',
@@ -95,7 +95,7 @@ class VIEW3D_PT_animall(bpy.types.Panel):
     bl_region_type = 'TOOLS'
     bl_category = "Animation"
     bl_label = 'AnimAll'
-    bl_options = {'DEFAULT_CLOSED'}
+    #bl_options = {'DEFAULT_CLOSED'}
     @classmethod
     def poll(self, context):
         if context.active_object and context.active_object.type in {'MESH', 'LATTICE', 'CURVE', 'SURFACE'}:



More information about the Bf-extensions-cvs mailing list