Dumb html standard not assuming px thing.

This commit is contained in:
firebingo 2018-09-13 20:30:27 -07:00
parent 82eeacab94
commit cdf61c9d57
3 changed files with 9 additions and 7 deletions

View file

@ -1504,8 +1504,8 @@ class Player {
//Sizes the canvas/pixi's renderer to the actual render resolution
this.pixi.app.renderer.resize(res.width * window.devicePixelRatio, res.height * window.devicePixelRatio);
//Css size overwrites the display size of the canvas
this.pixi.app.view.style.width = res.width;
this.pixi.app.view.style.height = res.height;
this.pixi.app.view.style.width = res.width + "px";
this.pixi.app.view.style.height = res.height + "px";
//Transform the text container to be the right scale, browser handles all dpi stuff for html elements itself
document.getElementById('text-container').style.cssText = `transform: scale(${newScale})`;
}