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:
authorJulian Eisel <julian_eisel@web.de>2015-03-25 23:52:54 +0300
committerJulian Eisel <julian_eisel@web.de>2015-03-25 23:52:54 +0300
commit581afa9da37e0adaea756c165af11b467e9b8852 (patch)
tree2e4240076e52060bdf6406874ea0fc2c5e71edb8 /source/blender/editors/space_sequencer
parent4dc141f933f632ea00482b294e8c252ac12d21aa (diff)
Fix T44121: VSE Preview scaling issue when using proxies and Show Overexposed
Diffstat (limited to 'source/blender/editors/space_sequencer')
-rw-r--r--source/blender/editors/space_sequencer/sequencer_draw.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/editors/space_sequencer/sequencer_draw.c b/source/blender/editors/space_sequencer/sequencer_draw.c
index b63c46cba01..c668887e564 100644
--- a/source/blender/editors/space_sequencer/sequencer_draw.c
+++ b/source/blender/editors/space_sequencer/sequencer_draw.c
@@ -1079,8 +1079,10 @@ void draw_image_seq(const bContext *C, Scene *scene, ARegion *ar, SpaceSeq *sseq
/* future files may have new scopes we don't catch above */
if (scope) {
scopes->reference_ibuf = ibuf;
- viewrect[0] = scope->x;
- viewrect[1] = scope->y;
+ if (!scopes->zebra_ibuf) { /* zebra uses viewrect from orig ibuf */
+ viewrect[0] = scope->x;
+ viewrect[1] = scope->y;
+ }
}
else {
scopes->reference_ibuf = NULL;