[Bf-blender-cvs] [581afa9] master: Fix T44121: VSE Preview scaling issue when using proxies and Show Overexposed

Julian Eisel noreply at git.blender.org
Wed Mar 25 21:53:50 CET 2015


Commit: 581afa9da37e0adaea756c165af11b467e9b8852
Author: Julian Eisel
Date:   Wed Mar 25 21:52:54 2015 +0100
Branches: master
https://developer.blender.org/rB581afa9da37e0adaea756c165af11b467e9b8852

Fix T44121: VSE Preview scaling issue when using proxies and Show Overexposed

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

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 b63c46c..c668887 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;




More information about the Bf-blender-cvs mailing list