Bug 783368 - Correct the height calculation in ProgressiveUpdateData. r=kats

This commit is contained in:
Chris Lord 2012-11-21 22:34:19 +00:00
parent dcd77547c6
commit 3544140050

View File

@ -23,7 +23,7 @@ public class ProgressiveUpdateData {
this.x = viewport.viewportRectLeft;
this.y = viewport.viewportRectTop;
this.width = viewport.viewportRectRight - this.x;
this.height = viewport.viewportRectBottom - this.x;
this.height = viewport.viewportRectBottom - this.y;
this.scale = viewport.zoomFactor;
}
}