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:
authorCampbell Barton <ideasman42@gmail.com>2020-02-17 12:44:18 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-02-17 12:44:18 +0300
commitc0423c871d1dde5a6bb094768c3310c66b795586 (patch)
tree3edaf37d8140fbd5ffd977df6c733f59e55e1725 /source/blender/editors/space_sequencer/sequencer_select.c
parentfc85490c2d29546616eaf0b57c92ba3561edd9c2 (diff)
Keymap: add sequencer box select with handles
Use Ctrl-B, include in menu, rename property to match graph editor.
Diffstat (limited to 'source/blender/editors/space_sequencer/sequencer_select.c')
-rw-r--r--source/blender/editors/space_sequencer/sequencer_select.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/editors/space_sequencer/sequencer_select.c b/source/blender/editors/space_sequencer/sequencer_select.c
index bf06fa768ca..f63081c838b 100644
--- a/source/blender/editors/space_sequencer/sequencer_select.c
+++ b/source/blender/editors/space_sequencer/sequencer_select.c
@@ -1026,7 +1026,7 @@ static int sequencer_box_select_exec(bContext *C, wmOperator *op)
}
const eSelectOp sel_op = RNA_enum_get(op->ptr, "mode");
- const bool handles = RNA_boolean_get(op->ptr, "handles");
+ const bool handles = RNA_boolean_get(op->ptr, "include_handles");
const bool select = (sel_op != SEL_OP_SUB);
if (SEL_OP_USE_PRE_DESELECT(sel_op)) {
@@ -1135,7 +1135,8 @@ void SEQUENCER_OT_select_box(wmOperatorType *ot)
prop = RNA_def_boolean(
ot->srna, "tweak", 0, "Tweak", "Operator has been activated using a tweak event");
RNA_def_property_flag(prop, PROP_SKIP_SAVE);
- prop = RNA_def_boolean(ot->srna, "handles", 0, "Select Handles", "Select the strips' handles");
+ prop = RNA_def_boolean(
+ ot->srna, "include_handles", 0, "Select Handles", "Select the strips' handles");
RNA_def_property_flag(prop, PROP_SKIP_SAVE);
}