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.
This commit is contained in:
@@ -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";
|
||||
|
||||
|
||||
@@ -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";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user