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>2017-01-08 03:04:34 +0300
committermeta-androcto <meta.androcto1@gmail.com>2017-01-08 03:04:34 +0300
commitd3b7aaea275bdc29b514dc863562b5b609b1a41c (patch)
tree9101d51c35c50e4e866c0a6e570d88c820428e62 /space_view3d_3d_navigation.py
parent559d29dff9c59f7952179b07f4bce7401f68ef47 (diff)
3D Nav, change Tab name to Display T50357
Diffstat (limited to 'space_view3d_3d_navigation.py')
-rw-r--r--space_view3d_3d_navigation.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/space_view3d_3d_navigation.py b/space_view3d_3d_navigation.py
index 1da99797..ac5579a4 100644
--- a/space_view3d_3d_navigation.py
+++ b/space_view3d_3d_navigation.py
@@ -254,7 +254,7 @@ class ShowHideObject1(bpy.types.Operator):
class VIEW3D_PT_3dnavigationPanel(bpy.types.Panel):
- bl_category = "Navigation"
+ bl_category = "Display"
bl_space_type = "VIEW_3D"
bl_region_type = "TOOLS"
bl_label = "3D Nav"
@@ -303,7 +303,7 @@ class VIEW3D_PT_pan_navigation1(bpy.types.Panel):
bl_label = 'Pan Orbit Zoom Roll'
bl_space_type = 'VIEW_3D'
bl_region_type = 'TOOLS'
- bl_category = 'Navigation'
+ bl_category = 'Display'
def draw(self, context):
layout = self.layout
@@ -367,7 +367,7 @@ class NavAddonPreferences(bpy.types.AddonPreferences):
category = bpy.props.StringProperty(
name="Tab Category",
description="Choose a name for the category of the panel",
- default="Navigation",
+ default="Display",
update=update_panel)
def draw(self, context):