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:
authorDaniel Salazar <zanqdo@gmail.com>2014-01-12 07:23:50 +0400
committerDaniel Salazar <zanqdo@gmail.com>2014-01-12 07:23:50 +0400
commit85596dadde943575db642b21d73b390822e90bae (patch)
tree184eb166ac378285b28acfbfb255ae7edfa76fae /animation_animall.py
parent71eb0065f3d5d8d0b1fbdc46a21309f6c60c6175 (diff)
AnimAll: Update location description and open by default, now that we have tabs in toolbar there's no need to make space
Diffstat (limited to 'animation_animall.py')
-rw-r--r--animation_animall.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/animation_animall.py b/animation_animall.py
index 542f4924..5373e1b5 100644
--- a/animation_animall.py
+++ b/animation_animall.py
@@ -21,7 +21,7 @@ bl_info = {
'author': 'Daniel Salazar <zanqdo@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'}: