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-05-27 07:54:00 +0300
committermeta-androcto <meta.androcto1@gmail.com>2019-05-27 07:54:00 +0300
commit141a3e9891ae57a3d5d0da1a666e21e4a70a764c (patch)
tree7801a79405d48c7dac7f3313a072749c5a34c222
parent66754b7d72981e142ceda3c7ec0d7ef0e1438aa0 (diff)
auto mirror, bsurfaces, looptools, bool tools: new tab: Edit
-rw-r--r--mesh_auto_mirror.py4
-rw-r--r--mesh_bsurfaces.py6
-rw-r--r--mesh_looptools.py4
-rw-r--r--object_boolean_tools.py2
4 files changed, 8 insertions, 8 deletions
diff --git a/mesh_auto_mirror.py b/mesh_auto_mirror.py
index 022981a3..7bc10f79 100644
--- a/mesh_auto_mirror.py
+++ b/mesh_auto_mirror.py
@@ -195,7 +195,7 @@ class VIEW3D_PT_BisectMirror(Panel):
bl_space_type = 'VIEW_3D'
bl_region_type = 'UI'
bl_label = "Auto Mirror"
- bl_category = 'Tools'
+ bl_category = 'Edit'
bl_options = {'DEFAULT_CLOSED'}
@@ -288,7 +288,7 @@ class AutoMirrorAddonPreferences(AddonPreferences):
category: StringProperty(
name="Tab Category",
description="Choose a name for the category of the panel",
- default="Tools",
+ default="Edit",
update=update_panel
)
diff --git a/mesh_bsurfaces.py b/mesh_bsurfaces.py
index 04139c25..ec53d80b 100644
--- a/mesh_bsurfaces.py
+++ b/mesh_bsurfaces.py
@@ -62,7 +62,7 @@ from bpy.types import (
class VIEW3D_PT_tools_SURFSK_mesh(Panel):
bl_space_type = 'VIEW_3D'
bl_region_type = 'UI'
- bl_category = 'Tools'
+ bl_category = 'Edit'
#bl_context = "mesh_edit"
bl_label = "Bsurfaces"
@@ -99,7 +99,7 @@ class VIEW3D_PT_tools_SURFSK_curve(Panel):
bl_space_type = 'VIEW_3D'
bl_region_type = 'UI'
bl_context = "curve_edit"
- bl_category = 'Tools'
+ bl_category = 'Edit'
bl_label = "Bsurfaces"
@classmethod
@@ -4097,7 +4097,7 @@ class BsurfPreferences(AddonPreferences):
category: StringProperty(
name="Tab Category",
description="Choose a name for the category of the panel",
- default="Tools",
+ default="Edit",
update=update_panel
)
diff --git a/mesh_looptools.py b/mesh_looptools.py
index 87c23383..7a412f9c 100644
--- a/mesh_looptools.py
+++ b/mesh_looptools.py
@@ -4343,7 +4343,7 @@ class VIEW3D_MT_edit_mesh_looptools(Menu):
class VIEW3D_PT_tools_looptools(Panel):
bl_space_type = 'VIEW_3D'
bl_region_type = 'UI'
- bl_category = 'View'
+ bl_category = 'Edit'
bl_context = "mesh_edit"
bl_label = "LoopTools"
bl_options = {'DEFAULT_CLOSED'}
@@ -5081,7 +5081,7 @@ class LoopPreferences(AddonPreferences):
category: StringProperty(
name="Tab Category",
description="Choose a name for the category of the panel",
- default="Tools",
+ default="Edit",
update=update_panel
)
diff --git a/object_boolean_tools.py b/object_boolean_tools.py
index 28e9ebc9..ecaaf9c8 100644
--- a/object_boolean_tools.py
+++ b/object_boolean_tools.py
@@ -1176,7 +1176,7 @@ class PREFS_BoolTool_Props(AddonPreferences):
category: StringProperty(
name="Tab Category",
description="Choose a name for the category of the panel",
- default="Tools",
+ default="Edit",
update=update_panels,
)
Enable_Tab_01: BoolProperty(default=False)