From cb7e393307024facb4ed2f6a5009ce3a17e26eee Mon Sep 17 00:00:00 2001 From: Peter Schlaile Date: Sun, 5 Aug 2007 19:13:34 +0000 Subject: == Sequencer == This fixes [#6996] Sequence Nesting and enables sequence nesting for the first time :) The old hack done by Ton prevented eternal loops by preventing Sequence tracks being added to Sequence scenes. We now disable "Do sequence" temporarily for the _current_ scene, which has the same effect but leaves the possibility of sequence nesting untouched. Also fixes a warning in editseq (uninitialized variable). --- source/blender/src/editseq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/src/editseq.c') diff --git a/source/blender/src/editseq.c b/source/blender/src/editseq.c index bbcef28cd2d..67fd86e5e9c 100644 --- a/source/blender/src/editseq.c +++ b/source/blender/src/editseq.c @@ -203,7 +203,7 @@ int sequence_is_free_transformable(Sequence * seq) Sequence *find_neighboring_sequence(Sequence *test, int lr) { /* looks to the left on lr==1, to the right on lr==2 */ - Sequence *seq,*foundneighbor; + Sequence *seq,*foundneighbor = 0; int found=0; Editing *ed; -- cgit v1.2.3