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:
authormeta-androcto <meta.androcto1@gmail.com>2019-09-24 14:51:54 +0300
committermeta-androcto <meta.androcto1@gmail.com>2019-09-24 14:51:54 +0300
commitcec3f91d6da4b79634cd373b0af0a12995596c97 (patch)
tree3db29d525020ae80bb3ae4e681a9aa7811859373 /animation_animall.py
parentaae47dca778b8f9c8a60b3c0c5c938b0f402915d (diff)
addons: shorten animation to animate: T70017
Diffstat (limited to 'animation_animall.py')
-rw-r--r--animation_animall.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/animation_animall.py b/animation_animall.py
index b74693c3..38f80153 100644
--- a/animation_animall.py
+++ b/animation_animall.py
@@ -21,7 +21,7 @@ bl_info = {
"author": "Daniel Salazar <zanqdo@gmail.com>",
"version": (0, 8, 3),
"blender": (2, 80, 0),
- "location": "3D View > Sidebar > Animation tab > AnimAll",
+ "location": "3D View > Toolbox > Animation tab > AnimAll",
"description": "Allows animation of mesh, lattice, curve and surface data",
"warning": "",
"wiki_url": "https://wiki.blender.org/index.php/Extensions:2.6/Py/"
@@ -139,7 +139,7 @@ def delete_key(data, key):
class VIEW3D_PT_animall(Panel):
bl_space_type = 'VIEW_3D'
bl_region_type = 'UI'
- bl_category = "Animation"
+ bl_category = "Animate"
bl_label = 'AnimAll'
bl_options = {'DEFAULT_CLOSED'}
@@ -552,7 +552,7 @@ class AnimallAddonPreferences(AddonPreferences):
category: StringProperty(
name="Tab Category",
description="Choose a name for the category of the panel",
- default="Animation",
+ default="Animate",
update=update_panel
)