From d4483b6d157da1436e70bd3beb8e37c5ed772ee1 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 1 Jun 2020 14:14:21 +1000 Subject: Cleanup: error building on Linux --- source/blender/editors/space_sequencer/sequencer_select.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/blender/editors/space_sequencer/sequencer_select.c b/source/blender/editors/space_sequencer/sequencer_select.c index bf5d788464c..a8779d96248 100644 --- a/source/blender/editors/space_sequencer/sequencer_select.c +++ b/source/blender/editors/space_sequencer/sequencer_select.c @@ -421,7 +421,7 @@ static int sequencer_select_exec(bContext *C, wmOperator *op) } switch (left_right) { - case SEQ_SELECT_LR_MOUSE: + case SEQ_SELECT_LR_MOUSE: { /* 10px margin around playhead to select under playhead with mouse. */ float margin = BLI_rctf_size_x(&v2d->cur) / BLI_rcti_size_x(&v2d->mask) * 10; x = UI_view2d_region_to_view_x(v2d, mval[0]); @@ -429,6 +429,7 @@ static int sequencer_select_exec(bContext *C, wmOperator *op) x = CFRA; } break; + } case SEQ_SELECT_LR_LEFT: x = CFRA - 1.0f; break; -- cgit v1.2.3