GPv3: Delete active keyframe operator

Port missing keyframe operator to new structure.
Found this missing operator during #125261

Pull Request: https://projects.blender.org/blender/blender/pulls/125770
This commit is contained in:
Pratik Borhade
2024-08-02 08:18:32 +02:00
committed by Pratik Borhade
parent a88327411d
commit e60422c5a7
2 changed files with 60 additions and 0 deletions
+4
View File
@@ -6026,6 +6026,10 @@ class VIEW3D_MT_edit_greasepencil_animation(Menu):
layout.operator("grease_pencil.frame_duplicate", text="Duplicate Active Keyframe (Active Layer)").all = False
layout.operator("grease_pencil.frame_duplicate", text="Duplicate Active Keyframe (All Layer)").all = True
layout.separator()
layout.operator("grease_pencil.active_frame_delete", text="Delete Active Keyframe (Active Layer)").all = False
layout.operator("grease_pencil.active_frame_delete", text="Delete Active Keyframe (All Layer)").all = True
class VIEW3D_MT_edit_gpencil_transform(Menu):
bl_label = "Transform"