--- C:/DOCUME~1/Home/LOCALS~1/Temp/space_view3d.py-revBASE.svn000.tmp.py Wed Feb 17 20:32:20 2010 +++ C:/Documents and Settings/Home/Desktop/Blender SVN/release/scripts/ui/space_view3d.py Wed Feb 17 20:24:04 2010 @@ -1204,7 +1204,27 @@ prop.value = "(False, False, True)" prop.path = "tool_settings.mesh_selection_mode" + layout.separator() + + prop = layout.operator("wm.context_set_value", text="Vertex & Edge", icon="ORTHO_OFF") + prop.value = "(True, True, False)" + prop.path = "tool_settings.mesh_selection_mode" + prop = layout.operator("wm.context_set_value", text="Vertex & Face", icon="ORTHO") + prop.value = "(True, False, True)" + prop.path = "tool_settings.mesh_selection_mode" + + prop = layout.operator("wm.context_set_value", text="Edge & Face", icon="SNAP_FACE") + prop.value = "(False, True, True)" + prop.path = "tool_settings.mesh_selection_mode" + + layout.separator() + + prop = layout.operator("wm.context_set_value", text="Vertex & Edge & Face", icon="SNAP_VOLUME") + prop.value = "(True, True, True)" + prop.path = "tool_settings.mesh_selection_mode" + + class VIEW3D_MT_edit_mesh_extrude(bpy.types.Menu): bl_label = "Extrude"