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:
authorRichard Antalik <richardantalik@gmail.com>2020-05-14 05:01:30 +0300
committerRichard Antalik <richardantalik@gmail.com>2020-05-14 05:10:29 +0300
commit4341b5b2fe722be7165896d8ce6502f4a158e878 (patch)
treeb43c4c1d75b0597c4516ec52c787b95610100576 /source/blender/editors/space_sequencer/sequencer_edit.c
parent27ef012ac7674498e171d679c655bbe5c709e181 (diff)
Fix T59954: View all Sequences doesn't show all sequences
Set boundbox_seq start X minimum value to SFRA. This should be part of rBf66b5edf98c9, but I forgot to include this change.
Diffstat (limited to 'source/blender/editors/space_sequencer/sequencer_edit.c')
-rw-r--r--source/blender/editors/space_sequencer/sequencer_edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_sequencer/sequencer_edit.c b/source/blender/editors/space_sequencer/sequencer_edit.c
index edbd52f4d53..8624da9e8c2 100644
--- a/source/blender/editors/space_sequencer/sequencer_edit.c
+++ b/source/blender/editors/space_sequencer/sequencer_edit.c
@@ -255,7 +255,7 @@ void boundbox_seq(Scene *scene, rctf *rect)
return;
}
- min[0] = 0.0;
+ min[0] = SFRA;
max[0] = EFRA + 1;
min[1] = 0.0;
max[1] = 8.0;