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-23 06:19:29 +0300
committermeta-androcto <meta.androcto1@gmail.com>2019-09-23 06:19:29 +0300
commitf6d7743365308e17eeac9d0b937a94c3b36515ac (patch)
tree3f215861a7307ac9f2f5aca69419bd0e490d6ad1 /curve_assign_shapekey.py
parent2ce76dfa56bfd81226d185847f7526ad675d48d1 (diff)
curve_assign_shapekey: close Panel, tab to Create tab: T70017
Diffstat (limited to 'curve_assign_shapekey.py')
-rw-r--r--curve_assign_shapekey.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/curve_assign_shapekey.py b/curve_assign_shapekey.py
index d374a51a..ce2dcc08 100644
--- a/curve_assign_shapekey.py
+++ b/curve_assign_shapekey.py
@@ -24,7 +24,7 @@ bl_info = {
"name": "Assign Shape Keys",
"author": "Shrinivas Kulkarni",
"version": (1, 0, 0),
- "location": "View 3D > Sidebar > Edit Tab",
+ "location": "View 3D > Sidebar > Create Tab",
"description": "Assigns one or more Bezier curves as shape keys to another Bezier curve",
"category": "Add Curve",
"wiki_url": "https://github.com/Shriinivas/assignshapekey/blob/master/README.md",
@@ -1040,7 +1040,8 @@ class AssignShapeKeysPanel(Panel):
bl_idname = "CURVE_PT_assign_shape_keys"
bl_space_type = 'VIEW_3D'
bl_region_type = 'UI'
- bl_category = "Edit"
+ bl_category = "Create"
+ bl_options = {'DEFAULT_CLOSED'}
@classmethod
def poll(cls, context):
@@ -1102,7 +1103,7 @@ class AssignShapeKeysPreferences(AddonPreferences):
category: StringProperty(
name = "Tab Category",
description = "Choose a name for the category of the panel",
- default = "Edit",
+ default = "Create",
update = updatePanel
)