UI: rename View Frame to Go to Current Frame in video sequencer

For consistency with other editors.

Differential Revision: https://developer.blender.org/D7025
This commit is contained in:
Eitan
2020-03-09 16:46:38 +01:00
committed by Brecht Van Lommel
parent 324e24ee38
commit 3923738c8f

View File

@@ -2935,9 +2935,9 @@ static int sequencer_view_frame_exec(bContext *C, wmOperator *op)
void SEQUENCER_OT_view_frame(wmOperatorType *ot)
{
/* identifiers */
ot->name = "View Frame";
ot->name = "Go to Current Frame";
ot->idname = "SEQUENCER_OT_view_frame";
ot->description = "Reset viewable area to show range around current frame";
ot->description = "Move the view to the playhead";
/* api callbacks */
ot->exec = sequencer_view_frame_exec;