From c8b9732cdc354f3c02e6a0f874477f91b1baa2b0 Mon Sep 17 00:00:00 2001
From: Jonathan Williamson <jonathan@cgcookie.com>
Date: Thu, 2 Jan 2014 18:07:32 -0600
Subject: [PATCH] Update addon for 3D View Toolbar tabs.

This adds the "Navigation" category for the addon, thus assigning it a tab. Due to this, I've also made the panel open by default. It was closed.
---
 space_view3d_3d_navigation.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/space_view3d_3d_navigation.py b/space_view3d_3d_navigation.py
index f12914a5e..8b229ca5c 100644
--- a/space_view3d_3d_navigation.py
+++ b/space_view3d_3d_navigation.py
@@ -40,10 +40,10 @@ import bpy
 
 # main class of this toolbar
 class VIEW3D_PT_3dnavigationPanel(bpy.types.Panel):
+    bl_category = "Navigation"
     bl_space_type = "VIEW_3D"
     bl_region_type = "TOOLS"
     bl_label = "3D Nav"
-    bl_options = {"DEFAULT_CLOSED"}
 
     def draw(self, context):
         layout = self.layout
-- 
GitLab