Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2015-06-12 17:33:21 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-06-12 17:34:36 +0300
commite2e414218bf3cccea00ff4795f736dbefde9aa4d (patch)
tree5189848d5556903dcdae470a9afabe0f4b529487
parent0d95b41f9e40b30956510146e63c365c5f3b38ab (diff)
UI: Vertex Mark/Clear Sharp menu, match edge menu
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 1bfed4ed952..43859a3a6a8 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -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()