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 04:18:14 +0300
committermeta-androcto <meta.androcto1@gmail.com>2019-05-27 04:18:14 +0300
commit7ccd67cb8e1b633bbe135ea69f1468d0fe90198a (patch)
treef5fe8e1a01a52c79402543a1189519719d9d4ea8 /space_view3d_3d_navigation.py
parent4b8bb39f688d0f024811c7c0c3da15c98326b5c1 (diff)
space_view3d_3d_navigation: use View tab
Diffstat (limited to 'space_view3d_3d_navigation.py')
-rw-r--r--space_view3d_3d_navigation.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/space_view3d_3d_navigation.py b/space_view3d_3d_navigation.py
index 23e39cf2..52e1f49f 100644
--- a/space_view3d_3d_navigation.py
+++ b/space_view3d_3d_navigation.py
@@ -25,9 +25,9 @@
bl_info = {
"name": "3D Navigation",
"author": "Demohero, uriel",
- "version": (1, 2, 4),
+ "version": (1, 2, 5),
"blender": (2, 80, 0),
- "location": "View3D > Sidebar > Display Tab",
+ "location": "View3D > Sidebar > View Tab",
"description": "Navigate the Camera & 3D View from the Toolshelf",
"warning": "",
"wiki_url": "https://wiki.blender.org/index.php/Extensions:2.6/Py/"
@@ -219,8 +219,8 @@ class BottomViewpoint1(Operator):
class VIEW3D_PT_3dnavigationPanel(Panel):
bl_space_type = "VIEW_3D"
bl_region_type = "UI"
- bl_label = "3D Nav"
- bl_category = "Display"
+ bl_label = "3d Nav"
+ bl_category = "View"
def draw(self, context):
layout = self.layout
@@ -263,7 +263,7 @@ class VIEW3D_PT_3dnavigationPanel2(Panel):
bl_space_type = "VIEW_3D"
bl_region_type = "UI"
bl_label = "Pan Orbit Zoom Roll"
- bl_category = "Display"
+ bl_category = "View"
bl_options = {'DEFAULT_CLOSED'}
def draw(self, context):
@@ -341,7 +341,7 @@ class NavAddonPreferences(AddonPreferences):
category: StringProperty(
name="Tab Category",
description="Choose a name for the category of the panel",
- default="Display",
+ default="View",
update=update_panel
)