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:
authorJean First <robbott>2019-06-17 19:54:08 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-06-17 19:55:07 +0300
commitd8e7d8b82c6abc35b2f1463d506a9aec20825b86 (patch)
tree97d346293b8d7e0da0560f122e5a759b55341e50 /release/scripts/startup/bl_ui/space_graph.py
parent4cc98af3a4413129fa7c5088532433ce6e9b3e81 (diff)
Fix missing keyframe type operation in dopesheet and timeline context menu
Differential Revision: https://developer.blender.org/D5055
Diffstat (limited to 'release/scripts/startup/bl_ui/space_graph.py')
-rw-r--r--release/scripts/startup/bl_ui/space_graph.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_graph.py b/release/scripts/startup/bl_ui/space_graph.py
index 422990760b4..7af2e8cd0a6 100644
--- a/release/scripts/startup/bl_ui/space_graph.py
+++ b/release/scripts/startup/bl_ui/space_graph.py
@@ -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")