From 7a239812ca55153fc9751b6a87bc5c4deb76456b Mon Sep 17 00:00:00 2001 From: Sebastian Parborg Date: Tue, 20 Sep 2022 10:50:38 +0200 Subject: Fix misleading operator name in the dope-sheet and action editor The operator did not set the any extrapolation mode of the individual keyframes, it sets it for the whole f-curve. Change the operator name to reflect that. --- source/blender/editors/space_action/action_edit.c | 2 +- source/blender/editors/space_graph/graph_edit.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/editors') diff --git a/source/blender/editors/space_action/action_edit.c b/source/blender/editors/space_action/action_edit.c index 6d880f338f6..0803c5dc575 100644 --- a/source/blender/editors/space_action/action_edit.c +++ b/source/blender/editors/space_action/action_edit.c @@ -1326,7 +1326,7 @@ static int actkeys_expo_exec(bContext *C, wmOperator *op) void ACTION_OT_extrapolation_type(wmOperatorType *ot) { /* identifiers */ - ot->name = "Set Keyframe Extrapolation"; + ot->name = "Set F-Curve Extrapolation"; ot->idname = "ACTION_OT_extrapolation_type"; ot->description = "Set extrapolation mode for selected F-Curves"; diff --git a/source/blender/editors/space_graph/graph_edit.c b/source/blender/editors/space_graph/graph_edit.c index 39be05618d5..cab491fb8d2 100644 --- a/source/blender/editors/space_graph/graph_edit.c +++ b/source/blender/editors/space_graph/graph_edit.c @@ -1448,7 +1448,7 @@ static int graphkeys_expo_exec(bContext *C, wmOperator *op) void GRAPH_OT_extrapolation_type(wmOperatorType *ot) { /* Identifiers */ - ot->name = "Set Keyframe Extrapolation"; + ot->name = "Set F-Curve Extrapolation"; ot->idname = "GRAPH_OT_extrapolation_type"; ot->description = "Set extrapolation mode for selected F-Curves"; -- cgit v1.2.3