Replace call to window->devicePixelRatio() with devicePixelRatioF() to handle scales that are not multiples of 100%

This commit is contained in:
Mike 2022-01-20 17:36:41 +00:00
parent 4394c2e00b
commit 7a63ce4ca2

View file

@ -844,7 +844,7 @@ glm::uvec2 OpenGLDisplayPlugin::getSurfacePixels() const {
uvec2 result;
auto window = _container->getPrimaryWidget();
if (window) {
result = toGlm(window->geometry().size() * window->devicePixelRatio());
result = toGlm(window->geometry().size() * window->devicePixelRatioF());
}
return result;
}