[Bf-blender-cvs] [0caee78] master: Fix T40851: "Sequencer" auto-check after changing spaceview and scene.

Bastien Montagne noreply at git.blender.org
Sat Jun 28 18:34:01 CEST 2014


Commit: 0caee7843e51c5c7a24e24a18de4f4aa6cbf6550
Author: Bastien Montagne
Date:   Sat Jun 28 18:32:29 2014 +0200
https://developer.blender.org/rB0caee7843e51c5c7a24e24a18de4f4aa6cbf6550

Fix T40851: "Sequencer" auto-check after changing spaceview and scene.

Mere typo, leading to restore a flag from another scene's flag value...

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

M	source/blender/blenkernel/intern/sequencer.c

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

diff --git a/source/blender/blenkernel/intern/sequencer.c b/source/blender/blenkernel/intern/sequencer.c
index 2b38670..f5efe04 100644
--- a/source/blender/blenkernel/intern/sequencer.c
+++ b/source/blender/blenkernel/intern/sequencer.c
@@ -2539,7 +2539,7 @@ static ImBuf *seq_render_scene_strip(const SeqRenderData *context, Sequence *seq
 	}
 
 	/* prevent eternal loop */
-	do_seq = context->scene->r.scemode & R_DOSEQ;
+	do_seq = scene->r.scemode & R_DOSEQ;
 	scene->r.scemode &= ~R_DOSEQ;
 	
 #ifdef DURIAN_CAMERA_SWITCH




More information about the Bf-blender-cvs mailing list