diff options
-rw-r--r-- | qdeduper/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qdeduper/main.cpp b/qdeduper/main.cpp index 9be94f4..6edc144 100644 --- a/qdeduper/main.cpp +++ b/qdeduper/main.cpp @@ -7,7 +7,9 @@ DeduperMainWindow *w = nullptr; int main(int argc, char **argv) { QApplication a(argc, argv); +#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) a.setAttribute(Qt::ApplicationAttribute::AA_UseHighDpiPixmaps); +#endif w = new DeduperMainWindow(); w->show(); |