From c71be9a552359855e90abbe89c65df0eec6755bb Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 1 Jun 2020 14:46:46 +1000 Subject: UI: rename "Select Playhead" to "Select -> Side of Current Frame" Make this consistent with meshes select side of active, also rename "Under" to "Overlap" as this is confusing since strips can be considered above/under each other relative to their channels. --- source/blender/editors/space_sequencer/sequencer_intern.h | 2 +- source/blender/editors/space_sequencer/sequencer_select.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender') diff --git a/source/blender/editors/space_sequencer/sequencer_intern.h b/source/blender/editors/space_sequencer/sequencer_intern.h index 5f525bf913c..0e7e691c748 100644 --- a/source/blender/editors/space_sequencer/sequencer_intern.h +++ b/source/blender/editors/space_sequencer/sequencer_intern.h @@ -191,7 +191,7 @@ enum { SEQ_SELECT_LR_MOUSE, SEQ_SELECT_LR_LEFT, SEQ_SELECT_LR_RIGHT, - SEQ_SELECT_LR_UNDER_PLAYHEAD, + SEQ_SELECT_LR_OVERLAP, }; /* Defines used internally. */ diff --git a/source/blender/editors/space_sequencer/sequencer_select.c b/source/blender/editors/space_sequencer/sequencer_select.c index 25e1b70482e..2e6cd7f7442 100644 --- a/source/blender/editors/space_sequencer/sequencer_select.c +++ b/source/blender/editors/space_sequencer/sequencer_select.c @@ -436,7 +436,7 @@ static int sequencer_select_exec(bContext *C, wmOperator *op) case SEQ_SELECT_LR_RIGHT: x = CFRA + 1.0f; break; - case SEQ_SELECT_LR_UNDER_PLAYHEAD: + case SEQ_SELECT_LR_OVERLAP: default: x = CFRA; break; @@ -645,7 +645,7 @@ void SEQUENCER_OT_select(wmOperatorType *ot) {SEQ_SELECT_LR_MOUSE, "MOUSE", 0, "Mouse", "Use mouse position for selection"}, {SEQ_SELECT_LR_LEFT, "LEFT", 0, "Left", "Select to the left of the current frame"}, {SEQ_SELECT_LR_RIGHT, "RIGHT", 0, "Right", "Select to the right of the current frame"}, - {SEQ_SELECT_LR_UNDER_PLAYHEAD, "UNDER", 0, "Under", "Select under the current frame"}, + {SEQ_SELECT_LR_OVERLAP, "OVERLAP", 0, "Overlap", "Select overlapping the current frame"}, {0, NULL, 0, NULL, NULL}, }; PropertyRNA *prop; -- cgit v1.2.3