[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [27922] trunk/blender/release/scripts/ui/ space_view3d.py: Added missing Bottom, Left, Back view modes in the "View" menu on 3D area

Daniel Salazar zanqdo at gmail.com
Thu Apr 1 10:55:49 CEST 2010


Revision: 27922
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=27922
Author:   zanqdo
Date:     2010-04-01 10:55:47 +0200 (Thu, 01 Apr 2010)

Log Message:
-----------
Added missing Bottom, Left, Back view modes in the "View" menu on 3D area

Modified Paths:
--------------
    trunk/blender/release/scripts/ui/space_view3d.py

Modified: trunk/blender/release/scripts/ui/space_view3d.py
===================================================================
--- trunk/blender/release/scripts/ui/space_view3d.py	2010-04-01 08:49:11 UTC (rev 27921)
+++ trunk/blender/release/scripts/ui/space_view3d.py	2010-04-01 08:55:47 UTC (rev 27922)
@@ -250,8 +250,11 @@
 
         layout.operator("view3d.viewnumpad", text="Camera").type = 'CAMERA'
         layout.operator("view3d.viewnumpad", text="Top").type = 'TOP'
+        layout.operator("view3d.viewnumpad", text="Bottom").type = 'BOTTOM'
         layout.operator("view3d.viewnumpad", text="Front").type = 'FRONT'
+        layout.operator("view3d.viewnumpad", text="Back").type = 'BACK'
         layout.operator("view3d.viewnumpad", text="Right").type = 'RIGHT'
+        layout.operator("view3d.viewnumpad", text="Left").type = 'LEFT'
 
         layout.menu("VIEW3D_MT_view_cameras", text="Cameras")
 





More information about the Bf-blender-cvs mailing list