diff --git a/space_view3d_spacebar_menu.py b/space_view3d_spacebar_menu.py
index c07ad72175a5e5ab3dbc7ebc7107b3e5e7523101..d66d32300f32c2d00bcdf00840bb19d7df144a35 100644
--- a/space_view3d_spacebar_menu.py
+++ b/space_view3d_spacebar_menu.py
@@ -843,16 +843,12 @@ class VIEW3D_MT_SelectEditMenu(bpy.types.Menu):
         layout.operator("mesh.select_axis", text="Side of Active")
         layout.separator()
 
-        layout.operator("mesh.select_by_number_vertices",
-                        text="Triangles").type = 'TRIANGLES'
-        layout.operator("mesh.select_by_number_vertices",
-                        text="Quads").type = 'QUADS'
+        layout.operator("mesh.select_by_number_vertices", text="By Number of Verts")
         if context.scene.tool_settings.mesh_select_mode[2] == False:
-            layout.operator("mesh.select_non_manifold",
-                            text="Non Manifold")
-        layout.operator("mesh.select_by_number_vertices",
-                        text="Loose Verts/Edges").type = 'OTHER'
+            layout.operator("mesh.select_non_manifold", text="Non Manifold")
+        layout.operator("mesh.select_loose_verts", text="Loose Verts/Edges")
         layout.operator("mesh.select_similar", text="Similar")
+
         layout.separator()
 
         layout.operator("mesh.select_less", text="Less")