From 4cdaa513d3125f7785db7a94c534e3d172e7ff46 Mon Sep 17 00:00:00 2001 From: Freya Lupen Date: Fri, 6 Jun 2025 12:59:41 +0000 Subject: [PATCH] Use Breeze style on macOS, as on other platforms --- src/app/main.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/app/main.cpp b/src/app/main.cpp index bb2beaeee..34ac458a6 100644 --- a/src/app/main.cpp +++ b/src/app/main.cpp @@ -138,6 +138,11 @@ int main(int argc, char *argv[]) font.setHintingPreference(QFont::PreferNoHinting); app.setFont(font); #endif + +#ifdef Q_OS_MACOS + QApplication::setStyle(u"breeze"_s); +#endif + KLocalizedString::setApplicationDomain(QByteArrayLiteral("neochat")); QGuiApplication::setOrganizationName("KDE"_L1);