[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [1047] contrib/py/scripts/addons/ space_view3d_3d_navigation.py: script api updates

Brendon Murphy meta.androcto1 at gmail.com
Fri Sep 17 02:44:58 CEST 2010


Revision: 1047
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-extensions&revision=1047
Author:   meta-androcto
Date:     2010-09-17 02:44:58 +0200 (Fri, 17 Sep 2010)

Log Message:
-----------
script api updates
removed "!" from Cursor to Selected
this script will be moved to Trunk shortly !

Modified Paths:
--------------
    contrib/py/scripts/addons/space_view3d_3d_navigation.py

Modified: contrib/py/scripts/addons/space_view3d_3d_navigation.py
===================================================================
--- contrib/py/scripts/addons/space_view3d_3d_navigation.py	2010-09-16 18:37:19 UTC (rev 1046)
+++ contrib/py/scripts/addons/space_view3d_3d_navigation.py	2010-09-17 00:44:58 UTC (rev 1047)
@@ -24,9 +24,9 @@
 bl_addon_info = {
     "name": "3D Navigation",
     "author": "Demohero, uriel",
-    "version": (1,2),
+    "version": (1, 2),
     "blender": (2, 5, 3),
-    "api": 31854,
+    "api": 31965,
     "location": "View3D > Toolbar",
     "description": "You can navigate to views from 3D Toolbar (Shortcut: T)",
     "warning": "",
@@ -77,14 +77,14 @@
         col.label(text="View to Object:")
         col.prop(view, "lock_object", text="")
         row = col.row()
-        row.operator("view3d.view_selected", text="View to selected !") 
+        row.operator("view3d.view_selected", text="View to Selected") 
         col = layout.column(align=True)
         col.label(text="Cursor:")
         row = col.row()
         row.operator("view3d.snap_cursor_to_center", text="Center")
         row.operator("view3d.view_center_cursor", text="View")
         row = col.row()
-        row.operator("view3d.snap_cursor_to_selected", text="Cursor to selected")
+        row.operator("view3d.snap_cursor_to_selected", text="Cursor to Selected")
 
 # register the class
 def register(): 




More information about the Bf-extensions-cvs mailing list