== Sequencer ==

Small fix for the last fix. Mixed up x and y scale... oh dear.
This commit is contained in:
Peter Schlaile
2012-03-18 19:32:26 +00:00
parent 24ea793c27
commit 90bc26631c

View File

@@ -1729,7 +1729,7 @@ static ImBuf * input_preprocess(
((double) context.recty /
(double) context.scene->r.ysch) : 1.0;
c.left *= xscale; c.right *= yscale;
c.left *= xscale; c.right *= xscale;
c.top *= yscale; c.bottom *= yscale;
t.xofs *= xscale; t.yofs *= yscale;