From fc8edcd810046764c73366bb002a1ab97823537b Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Fri, 26 Apr 2024 14:40:08 -0400 Subject: [PATCH] Don't force qqc2-desktop-style on Windows for now --- launcher/src/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/launcher/src/main.cpp b/launcher/src/main.cpp index 79db364..a9e09a9 100755 --- a/launcher/src/main.cpp +++ b/launcher/src/main.cpp @@ -129,6 +129,7 @@ int main(int argc, char *argv[]) } } +#if defined(Q_OS_LINUX) // Default to org.kde.desktop style unless the user forces another style if (qEnvironmentVariableIsEmpty("QT_QUICK_CONTROLS_STYLE")) { if (isSteamDeck) { @@ -137,6 +138,7 @@ int main(int argc, char *argv[]) QQuickStyle::setStyle(QStringLiteral("org.kde.desktop")); } } +#endif QCoro::Qml::registerTypes();