From 229a5b2a716e1726cb69946fb6d5a77bde255285 Mon Sep 17 00:00:00 2001 From: LoudSnorer Date: Thu, 22 Jun 2023 08:05:21 -0400 Subject: [PATCH] fix high resolution display issues: enabled QT EnableHighDpiScaling --- oscar/main.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/oscar/main.cpp b/oscar/main.cpp index 805b0858..a58749be 100644 --- a/oscar/main.cpp +++ b/oscar/main.cpp @@ -7,6 +7,9 @@ * License. See the file COPYING in the main directory of the source code * for more details. */ +#define TEST_MACROS_ENABLEDoff +#include + #ifdef UNITTEST_MODE #include "tests/AutoTest.h" #endif @@ -289,6 +292,7 @@ int main(int argc, char *argv[]) { QCoreApplication::setApplicationName(getAppName()); QCoreApplication::setOrganizationName(getDeveloperName()); QCoreApplication::setOrganizationDomain(getDeveloperDomain()); + QGuiApplication::setAttribute(Qt::AA_EnableHighDpiScaling); QSettings settings;