Merge pull request #1575 from mrkcdf/794-fix-handling-of-fractional-display-scaling

Replace call to devicePixelRatio() with devicePixelRatioF().
This commit is contained in:
Kalila 2022-01-22 19:41:09 -05:00 committed by GitHub
commit 7c91ceba06
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;
}