Fix missing keyframe type operation in dopesheet and timeline context menu

Differential Revision: https://developer.blender.org/D5055
This commit is contained in:
Jean First 2019-06-17 18:54:08 +02:00 committed by Brecht Van Lommel
parent 4cc98af3a4
commit d8e7d8b82c
2 changed files with 2 additions and 0 deletions

View File

@ -573,6 +573,7 @@ class DOPESHEET_MT_context_menu(Menu):
layout.separator()
layout.operator_menu_enum("action.keyframe_type", "type", text="Keyframe Type")
layout.operator_menu_enum("action.handle_type", "type", text="Handle Type")
layout.operator_menu_enum("action.interpolation_type", "type", text="Interpolation Mode")

View File

@ -336,6 +336,7 @@ class GRAPH_MT_context_menu(Menu):
layout.separator()
layout.operator_menu_enum("graph.keyframe_type", "type", text="Keyframe Type")
layout.operator_menu_enum("graph.handle_type", "type", text="Handle Type")
layout.operator_menu_enum("graph.interpolation_type", "type", text="Interpolation Mode")
layout.operator_menu_enum("graph.easing_type", "type", text="Easing Type")