Merge pull request #315 from txtsd/display_scaling

Allow fractional DPI scaling
This commit is contained in:
Ezekiel Smith 2022-03-21 11:21:21 +11:00 committed by GitHub
commit 9c22af9685
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,6 +29,10 @@ int main(int argc, char *argv[])
QGuiApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
#endif
#if (QT_VERSION >= QT_VERSION_CHECK(5, 14, 0))
QApplication::setHighDpiScaleFactorRoundingPolicy(Qt::HighDpiScaleFactorRoundingPolicy::PassThrough);
#endif
// initialize Qt
Application app(argc, argv);