From 05ef937e92a3de5aac85d5c9436e84656a020c94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wolfram=20R=C3=B6sler?= Date: Sat, 28 Dec 2019 23:51:03 +0100 Subject: [PATCH] Use Qt::AA_UseHighDpiPixmaps on all platforms ... not only on Linux, in order to prevent icons from being fuzzy. Fixes #475 --- src/main.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index dd503d95..846baa67 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -50,10 +50,8 @@ int main(int argc, char** argv) #if QT_VERSION >= QT_VERSION_CHECK(5, 6, 0) QApplication::setAttribute(Qt::AA_EnableHighDpiScaling); -#ifdef Q_OS_LINUX QGuiApplication::setAttribute(Qt::AA_UseHighDpiPixmaps); #endif -#endif #if QT_VERSION >= QT_VERSION_CHECK(5, 7, 0) QGuiApplication::setDesktopFileName("org.keepassxc.KeePassXC.desktop");