From b3b45e1d7bda1cf627144e534b18db4c364860ff Mon Sep 17 00:00:00 2001 From: Christoph Lendenfeld Date: Thu, 30 Mar 2023 13:28:50 +0200 Subject: [PATCH] add feature --- source/blender/editors/space_graph/graph_edit.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source/blender/editors/space_graph/graph_edit.c b/source/blender/editors/space_graph/graph_edit.c index f8c90ee8178..0efc653c81b 100644 --- a/source/blender/editors/space_graph/graph_edit.c +++ b/source/blender/editors/space_graph/graph_edit.c @@ -80,6 +80,11 @@ static const EnumPropertyItem prop_graphkeys_insertkey_types[] = { 0, "Only Selected Channels", "Insert a keyframe on selected F-Curves using each curve's current value"}, + {GRAPHKEYS_INSERTKEY_ACTIVE, + "ACTIVE", + 0, + "Only Active F-Curve", + "Insert a keyframe on the active F-Curve using the curve's current value"}, {GRAPHKEYS_INSERTKEY_ACTIVE | GRAPHKEYS_INSERTKEY_CURSOR, "CURSOR_ACTIVE", 0, -- 2.30.2