web/rac: disable DPI scaling (#11757)
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
@ -86,8 +86,8 @@ export class RacInterface extends Interface {
|
|||||||
static domSize(): { width: number; height: number } {
|
static domSize(): { width: number; height: number } {
|
||||||
const size = document.body.getBoundingClientRect();
|
const size = document.body.getBoundingClientRect();
|
||||||
return {
|
return {
|
||||||
width: size.width * window.devicePixelRatio,
|
width: size.width,
|
||||||
height: size.height * window.devicePixelRatio,
|
height: size.height,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -175,7 +175,6 @@ export class RacInterface extends Interface {
|
|||||||
const params = new URLSearchParams();
|
const params = new URLSearchParams();
|
||||||
params.set("screen_width", Math.floor(RacInterface.domSize().width).toString());
|
params.set("screen_width", Math.floor(RacInterface.domSize().width).toString());
|
||||||
params.set("screen_height", Math.floor(RacInterface.domSize().height).toString());
|
params.set("screen_height", Math.floor(RacInterface.domSize().height).toString());
|
||||||
params.set("screen_dpi", (window.devicePixelRatio * 96).toString());
|
|
||||||
this.client.connect(params.toString());
|
this.client.connect(params.toString());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user