From b30eabbee26b1a2189170571e49bc86c0a49d334 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20K=C3=BCnzel?= Date: Sun, 24 Mar 2024 15:09:29 +0000 Subject: [PATCH] Use breeze style on Windows Most KDE apps to the same --- src/main.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index e93ee43bc9..ea55068bf4 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -79,6 +79,10 @@ int main(int argc, char **argv) QApplication app(argc, argv); app.setWindowIcon(QIcon::fromTheme(QStringLiteral("system-file-manager"), app.windowIcon())); +#if defined(Q_OS_WIN) + QApplication::setStyle(QStringLiteral("breeze")); +#endif + KCrash::initialize(); #if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)