mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 783368 - Correct the height calculation in ProgressiveUpdateData. r=kats
This commit is contained in:
parent
dcd77547c6
commit
3544140050
@ -23,7 +23,7 @@ public class ProgressiveUpdateData {
|
|||||||
this.x = viewport.viewportRectLeft;
|
this.x = viewport.viewportRectLeft;
|
||||||
this.y = viewport.viewportRectTop;
|
this.y = viewport.viewportRectTop;
|
||||||
this.width = viewport.viewportRectRight - this.x;
|
this.width = viewport.viewportRectRight - this.x;
|
||||||
this.height = viewport.viewportRectBottom - this.x;
|
this.height = viewport.viewportRectBottom - this.y;
|
||||||
this.scale = viewport.zoomFactor;
|
this.scale = viewport.zoomFactor;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user