Grease Pencil: Add Set Corner Type to the point context menu.

This adds the `Set Corner Type` operator to the right click menu.

This was missed in #143688.

Pull Request: https://projects.blender.org/blender/blender/pulls/147013
This commit is contained in:
Casey Bianco-Davis
2025-09-30 13:00:04 +02:00
committed by Falk David
parent 0428afbfcc
commit fe2b834189

View File

@@ -8395,6 +8395,7 @@ class VIEW3D_MT_greasepencil_edit_context_menu(Menu):
col.operator("transform.transform", text="Shrink/Fatten").mode = 'CURVE_SHRINKFATTEN'
col.operator("grease_pencil.stroke_smooth", text="Smooth Points")
col.operator("grease_pencil.set_start_point", text="Set Start Point")
col.operator_menu_enum("grease_pencil.set_corner_type", property="corner_type")
col.separator()