UI: Vertex Mark/Clear Sharp menu, match edge menu

This commit is contained in:
Campbell Barton 2015-06-13 00:33:21 +10:00
parent 0d95b41f9e
commit e2e414218b
1 changed files with 4 additions and 4 deletions

View File

@ -2279,10 +2279,10 @@ class VIEW3D_MT_edit_mesh_vertices(Menu):
layout.separator()
op = layout.operator("mesh.mark_sharp", text="Shade Smooth")
op.use_verts = True
op.clear = True
layout.operator("mesh.mark_sharp", text="Shade Sharp").use_verts = True
layout.operator("mesh.mark_sharp", text="Mark Sharp Edges").use_verts = True
props = layout.operator("mesh.mark_sharp", text="Clear Sharp Edges")
props.use_verts = True
props.clear = True
layout.separator()