Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntony Riakiotakis <kalast@gmail.com>2015-04-21 13:13:02 +0300
committerAntony Riakiotakis <kalast@gmail.com>2015-04-21 13:13:02 +0300
commit907d4d310f697a2a9b5c83bb2fc428175a7daaf2 (patch)
tree2dd084c882de2df05c35e1476206e68d696a3f7d /source/blender/editors/space_sequencer/sequencer_draw.c
parente0ae23b4d69be4ac78cde50b37cbbaed87a39ea4 (diff)
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.
Diffstat (limited to 'source/blender/editors/space_sequencer/sequencer_draw.c')
-rw-r--r--source/blender/editors/space_sequencer/sequencer_draw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_sequencer/sequencer_draw.c b/source/blender/editors/space_sequencer/sequencer_draw.c
index baadc28cd65..965a988a2bd 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);