Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPablo Vazquez <pablo@blender.org>2020-05-12 16:44:59 +0300
committerPablo Vazquez <pablo@blender.org>2020-05-12 16:44:59 +0300
commit82e8df01ac13609c5bbdb438f0033d076d844668 (patch)
tree8ef0a74c484a6a255ecb90785596af18e625f1f9 /source/blender/editors/space_sequencer
parent1b289029bb543853ea8e6aa1b0eb35eab6e84440 (diff)
UI: Rename 'View All' operator to 'Frame All'
This change was done time ago but it was still missing in some operators.
Diffstat (limited to 'source/blender/editors/space_sequencer')
-rw-r--r--source/blender/editors/space_sequencer/sequencer_edit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_sequencer/sequencer_edit.c b/source/blender/editors/space_sequencer/sequencer_edit.c
index edbd52f4d53..d935f7dbb40 100644
--- a/source/blender/editors/space_sequencer/sequencer_edit.c
+++ b/source/blender/editors/space_sequencer/sequencer_edit.c
@@ -2930,7 +2930,7 @@ static int sequencer_view_all_exec(bContext *C, wmOperator *op)
void SEQUENCER_OT_view_all(wmOperatorType *ot)
{
/* Identifiers. */
- ot->name = "View All";
+ ot->name = "Frame All";
ot->idname = "SEQUENCER_OT_view_all";
ot->description = "View all the strips in the sequencer";
@@ -3017,7 +3017,7 @@ static int sequencer_view_all_preview_exec(bContext *C, wmOperator *UNUSED(op))
void SEQUENCER_OT_view_all_preview(wmOperatorType *ot)
{
/* Identifiers. */
- ot->name = "View All";
+ ot->name = "Frame All";
ot->idname = "SEQUENCER_OT_view_all_preview";
ot->description = "Zoom preview to fit in the area";