Fix: invalid return value from sequencer "Add Speed Transition" operator

This commit is contained in:
Campbell Barton
2025-03-20 12:59:42 +11:00
parent 33d16796a7
commit 4c88c929c6

View File

@@ -501,7 +501,7 @@ static int sequencer_retiming_transition_add_exec(bContext *C, wmOperator *op)
}
else {
BKE_report(op->reports, RPT_WARNING, "Retiming key must be selected");
return false;
return OPERATOR_CANCELLED;
}
WM_event_add_notifier(C, NC_SCENE | ND_SEQUENCER, scene);