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-06-01 07:14:21 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-06-01 07:14:21 +0300
commitd4483b6d157da1436e70bd3beb8e37c5ed772ee1 (patch)
treec70a0a664142b8e99ebea6c9807077b6b794ec97 /source/blender
parentb5cfb23fa719816a8f712b2d18ac3be1e037a1ac (diff)
Cleanup: error building on Linux
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/editors/space_sequencer/sequencer_select.c3
1 files changed, 2 insertions, 1 deletions
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;