[Bf-extensions-cvs] [613df94] master: 3d navigation cleanup: unify change tab category

meta-androcto noreply at git.blender.org
Mon Aug 15 13:21:26 CEST 2016


Commit: 613df94081fc7ae7dc37647e2501e69203cf78bd
Author: meta-androcto
Date:   Mon Aug 15 21:21:06 2016 +1000
Branches: master
https://developer.blender.org/rBA613df94081fc7ae7dc37647e2501e69203cf78bd

3d navigation cleanup: unify change tab category

===================================================================

M	space_view3d_3d_navigation.py

===================================================================

diff --git a/space_view3d_3d_navigation.py b/space_view3d_3d_navigation.py
index 1ef7311..5912747 100644
--- a/space_view3d_3d_navigation.py
+++ b/space_view3d_3d_navigation.py
@@ -27,7 +27,7 @@ bl_info = {
     "author": "Demohero, uriel",
     "version": (1, 2, 1),
     "blender": (2, 77, 0),
-    "location": "View3D > Tool Shelf > 3D Navigation Tab",
+    "location": "View3D > Tool Shelf > Navigation Tab",
     "description": "Navigate the Camera & 3D View from the Toolshelf",
     "warning": "",
     "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
@@ -365,7 +365,7 @@ class NavAddonPreferences(bpy.types.AddonPreferences):
     bl_idname = __name__
 
     category = bpy.props.StringProperty(
-            name="Category",
+            name="Tab Category",
             description="Choose a name for the category of the panel",
             default="Navigation",
             update=update_panel)
@@ -375,7 +375,7 @@ class NavAddonPreferences(bpy.types.AddonPreferences):
         layout = self.layout
         row = layout.row()
         col = row.column()
-        col.label(text="Category:")
+        col.label(text="Tab Category:")
         col.prop(self, "category", text="")
 
 classes = [



More information about the Bf-extensions-cvs mailing list