[Bf-blender-cvs] [1e8b624] gooseberry: Make mattieu happy - allow smaller strips vertically.

Antony Riakiotakis noreply at git.blender.org
Thu Apr 2 20:54:34 CEST 2015


Commit: 1e8b62476b8ab03df6425647227cc470842aafbf
Author: Antony Riakiotakis
Date:   Thu Apr 2 20:54:17 2015 +0200
Branches: gooseberry
https://developer.blender.org/rB1e8b62476b8ab03df6425647227cc470842aafbf

Make mattieu happy - allow smaller strips vertically.

Allows mattieu's masterplan to keep overdrop at higher sequencer space
and all strips lower.

This won't align text so well though, but will leave it simple and he
can give feedback later.

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

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

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

diff --git a/source/blender/editors/space_sequencer/space_sequencer.c b/source/blender/editors/space_sequencer/space_sequencer.c
index ad70ec2..bfd42d4 100644
--- a/source/blender/editors/space_sequencer/space_sequencer.c
+++ b/source/blender/editors/space_sequencer/space_sequencer.c
@@ -183,7 +183,7 @@ static SpaceLink *sequencer_new(const bContext *C)
 	ar->v2d.min[1] = 0.5f;
 	
 	ar->v2d.max[0] = MAXFRAMEF;
-	ar->v2d.max[1] = MAXSEQ;
+	ar->v2d.max[1] = MAXSEQ * 4;
 	
 	ar->v2d.minzoom = 0.01f;
 	ar->v2d.maxzoom = 100.0f;




More information about the Bf-blender-cvs mailing list