From 0e01fba35333759c9be3f23b4b1ae493a19e2ced Mon Sep 17 00:00:00 2001 From: Aaron Carlisle Date: Sun, 18 Feb 2024 11:36:00 -0500 Subject: [PATCH] UI: Add "Set Sharpness by Angle" to Edge menu The recent operator added in https://projects.blender.org/blender/blender/commit/78963b466b was only added to the context menu, however for consistency and discoverability, the operator should also be added to the Edge menu. --- scripts/startup/bl_ui/space_view3d.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/startup/bl_ui/space_view3d.py b/scripts/startup/bl_ui/space_view3d.py index bb26fb94782..3d7c2f57aeb 100644 --- a/scripts/startup/bl_ui/space_view3d.py +++ b/scripts/startup/bl_ui/space_view3d.py @@ -4691,6 +4691,9 @@ class VIEW3D_MT_edit_mesh_edges(Menu): props.use_verts = True props.clear = True + layout.operator("mesh.set_sharpness_by_angle") + + if with_freestyle: layout.separator()