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 03:00:07 +0300
committermeta-androcto <meta.androcto1@gmail.com>2019-09-24 03:00:07 +0300
commitf4dabc29ff49a58ac8c4ebcd90d77d1709ec464a (patch)
tree645196a8be5d2323b1a8340124c628cd8d9abef2 /curve_tools
parent0215b5375dc5972b6749fb581f9137b0a643e306 (diff)
curve tools: fix tab to Edit: T70017
Diffstat (limited to 'curve_tools')
-rw-r--r--curve_tools/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/curve_tools/__init__.py b/curve_tools/__init__.py
index ceba9619..db56ff6a 100644
--- a/curve_tools/__init__.py
+++ b/curve_tools/__init__.py
@@ -27,7 +27,7 @@ bl_info = {
"author": "Mackraken",
"version": (0, 3, 3),
"blender": (2, 80, 0),
- "location": "View3D > Tool Shelf > Addons Tab",
+ "location": "View3D > Tool Shelf > Edit Tab",
"warning": "WIP",
"wiki_url": "https://wiki.blender.org/index.php/Extensions:2.6/Py/"
"Scripts/Curve/Curve_Tools",
@@ -249,7 +249,7 @@ class VIEW3D_PT_CurvePanel(Panel):
bl_space_type = "VIEW_3D"
bl_region_type = "UI"
bl_options = {'DEFAULT_CLOSED'}
- bl_category = "Tools"
+ bl_category = "Edit"
@classmethod
def poll(cls, context):
@@ -486,7 +486,7 @@ class CurveAddonPreferences(AddonPreferences):
category: StringProperty(
name="Tab Category",
description="Choose a name for the category of the panel",
- default="CurveTools",
+ default="Edit",
update=update_panel
)