[Bf-blender-cvs] [4341b5b2fe7] blender-v2.83-release: Fix T59954: View all Sequences doesn't show all sequences

Richard Antalik noreply at git.blender.org
Thu May 14 04:11:06 CEST 2020


Commit: 4341b5b2fe722be7165896d8ce6502f4a158e878
Author: Richard Antalik
Date:   Thu May 14 04:01:30 2020 +0200
Branches: blender-v2.83-release
https://developer.blender.org/rB4341b5b2fe722be7165896d8ce6502f4a158e878

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.

===================================================================

M	source/blender/editors/space_sequencer/sequencer_edit.c

===================================================================

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;



More information about the Bf-blender-cvs mailing list