Skip to content
Snippets Groups Projects
Commit dbb0d5e3 authored by Brendon Murphy's avatar Brendon Murphy
Browse files

update to mesh select by number

parent 5c60b12e
No related branches found
No related tags found
No related merge requests found
......@@ -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")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment