Skip to content
Snippets Groups Projects
Commit 85596dad authored by Daniel Salazar's avatar Daniel Salazar
Browse files

AnimAll: Update location description and open by default, now that we have...

AnimAll: Update location description and open by default, now that we have tabs in toolbar there's no need to make space
parent 71eb0065
No related branches found
No related tags found
No related merge requests found
...@@ -21,7 +21,7 @@ bl_info = { ...@@ -21,7 +21,7 @@ bl_info = {
'author': 'Daniel Salazar <zanqdo@gmail.com>', 'author': 'Daniel Salazar <zanqdo@gmail.com>',
'version': (0, 7), 'version': (0, 7),
"blender": (2, 69, 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', 'description': 'Allows animation of mesh, lattice, curve and surface data',
'warning': '', 'warning': '',
'wiki_url': 'http://wiki.blender.org/index.php/Extensions:2.6/Py/Scripts/Animation/AnimAll', '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): ...@@ -95,7 +95,7 @@ class VIEW3D_PT_animall(bpy.types.Panel):
bl_region_type = 'TOOLS' bl_region_type = 'TOOLS'
bl_category = "Animation" bl_category = "Animation"
bl_label = 'AnimAll' bl_label = 'AnimAll'
bl_options = {'DEFAULT_CLOSED'} #bl_options = {'DEFAULT_CLOSED'}
@classmethod @classmethod
def poll(self, context): def poll(self, context):
if context.active_object and context.active_object.type in {'MESH', 'LATTICE', 'CURVE', 'SURFACE'}: if context.active_object and context.active_object.type in {'MESH', 'LATTICE', 'CURVE', 'SURFACE'}:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment