[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [29453] branches/render25/release/scripts/ ui/space_view3d.py: missed this from last merge

Campbell Barton ideasman42 at gmail.com
Mon Jun 14 19:31:14 CEST 2010


Revision: 29453
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=29453
Author:   campbellbarton
Date:     2010-06-14 19:31:11 +0200 (Mon, 14 Jun 2010)

Log Message:
-----------
missed this from last merge

Modified Paths:
--------------
    branches/render25/release/scripts/ui/space_view3d.py

Modified: branches/render25/release/scripts/ui/space_view3d.py
===================================================================
--- branches/render25/release/scripts/ui/space_view3d.py	2010-06-14 16:58:31 UTC (rev 29452)
+++ branches/render25/release/scripts/ui/space_view3d.py	2010-06-14 17:31:11 UTC (rev 29453)
@@ -1282,15 +1282,15 @@
 
         prop = layout.operator("wm.context_set_value", text="Vertex", icon='VERTEXSEL')
         prop.value = "(True, False, False)"
-        prop.path = "tool_settings.mesh_selection_mode"
+        prop.data_path = "tool_settings.mesh_selection_mode"
 
         prop = layout.operator("wm.context_set_value", text="Edge", icon='EDGESEL')
         prop.value = "(False, True, False)"
-        prop.path = "tool_settings.mesh_selection_mode"
+        prop.data_path = "tool_settings.mesh_selection_mode"
 
         prop = layout.operator("wm.context_set_value", text="Face", icon='FACESEL')
         prop.value = "(False, False, True)"
-        prop.path = "tool_settings.mesh_selection_mode"
+        prop.data_path = "tool_settings.mesh_selection_mode"
 
 
 class VIEW3D_MT_edit_mesh_extrude(bpy.types.Menu):





More information about the Bf-blender-cvs mailing list