Commit: 3923738c8f7da41caf477d11ef1d86ca6069b8b9 Author: Eitan Date: Mon Mar 9 16:46:38 2020 +0100 Branches: master https://developer.blender.org/rB3923738c8f7da41caf477d11ef1d86ca6069b8b9
UI: rename View Frame to Go to Current Frame in video sequencer For consistency with other editors. Differential Revision: https://developer.blender.org/D7025 =================================================================== M source/blender/editors/space_sequencer/sequencer_edit.c =================================================================== diff --git a/source/blender/editors/space_sequencer/sequencer_edit.c b/source/blender/editors/space_sequencer/sequencer_edit.c index ca2a5eaa54f..0408ab75d53 100644 --- a/source/blender/editors/space_sequencer/sequencer_edit.c +++ b/source/blender/editors/space_sequencer/sequencer_edit.c @@ -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; _______________________________________________ Bf-blender-cvs mailing list [email protected] https://lists.blender.org/mailman/listinfo/bf-blender-cvs
