[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [45519] trunk/blender/release/scripts/ startup/bl_ui/space_view3d.py: Fix for recent commit that changed normal display buttons to use icons, the

Brecht Van Lommel brechtvanlommel at pandora.be
Tue Apr 10 19:01:35 CEST 2012


Revision: 45519
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=45519
Author:   blendix
Date:     2012-04-10 17:01:35 +0000 (Tue, 10 Apr 2012)
Log Message:
-----------
Fix for recent commit that changed normal display buttons to use icons, the
vertex/face icons were swapped.

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

Modified: trunk/blender/release/scripts/startup/bl_ui/space_view3d.py
===================================================================
--- trunk/blender/release/scripts/startup/bl_ui/space_view3d.py	2012-04-10 16:37:05 UTC (rev 45518)
+++ trunk/blender/release/scripts/startup/bl_ui/space_view3d.py	2012-04-10 17:01:35 UTC (rev 45519)
@@ -2373,8 +2373,8 @@
         col.separator()
         col.label(text="Normals:")
         row = col.row(align=True)
-        row.prop(mesh, "show_normal_face", text="", icon='VERTEXSEL')
-        row.prop(mesh, "show_normal_vertex", text="", icon='FACESEL')
+        row.prop(mesh, "show_normal_vertex", text="", icon='VERTEXSEL')
+        row.prop(mesh, "show_normal_face", text="", icon='FACESEL')
         row.prop(context.scene.tool_settings, "normal_size", text="Size")
 
         col.separator()




More information about the Bf-blender-cvs mailing list