[Bf-blender-cvs] [907d4d3] master: Backdrop strictly shows image result only - it could get influenced by scopes setting of space if one changed the space type back and forth.

Antony Riakiotakis noreply at git.blender.org
Tue Apr 21 12:13:10 CEST 2015


Commit: 907d4d310f697a2a9b5c83bb2fc428175a7daaf2
Author: Antony Riakiotakis
Date:   Tue Apr 21 12:13:02 2015 +0200
Branches: master
https://developer.blender.org/rB907d4d310f697a2a9b5c83bb2fc428175a7daaf2

Backdrop strictly shows image result only - it could get influenced by
scopes setting of space if one changed the space type back and forth.

Thanks to Sergey for reporting.

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

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

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

diff --git a/source/blender/editors/space_sequencer/sequencer_draw.c b/source/blender/editors/space_sequencer/sequencer_draw.c
index baadc28..965a988 100644
--- a/source/blender/editors/space_sequencer/sequencer_draw.c
+++ b/source/blender/editors/space_sequencer/sequencer_draw.c
@@ -1037,7 +1037,7 @@ void draw_image_seq(const bContext *C, Scene *scene, ARegion *ar, SpaceSeq *sseq
 
 	sequencer_display_size(scene, sseq, viewrect);
 
-	if (sseq->mainb != SEQ_DRAW_IMG_IMBUF || sseq->zebra != 0) {
+	if (!draw_backdrop && (sseq->mainb != SEQ_DRAW_IMG_IMBUF || sseq->zebra != 0)) {
 		SequencerScopes *scopes = &sseq->scopes;
 
 		sequencer_check_scopes(scopes, ibuf);




More information about the Bf-blender-cvs mailing list