From d3478b613310b18300b045c40aafc9ad7697d849 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sun, 4 Aug 2024 22:44:49 -0400 Subject: [PATCH] Don't lock some Steam Deck options behind --steam It's possible to add Astra a non-Steam game shortcut, so now it should enable the org.kde.breeze and some other stuff in that case. --- launcher/src/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/launcher/src/main.cpp b/launcher/src/main.cpp index 47edcaf..86576de 100755 --- a/launcher/src/main.cpp +++ b/launcher/src/main.cpp @@ -128,10 +128,10 @@ int main(int argc, char *argv[]) if (!args.empty() && !args.join(QLatin1Char(';')).contains("ffxivboot.exe"_L1)) { return 0; } + } - if (qEnvironmentVariable("SteamDeck") == QStringLiteral("1")) { - isSteamDeck = true; - } + if (qEnvironmentVariable("SteamDeck") == QStringLiteral("1")) { + isSteamDeck = true; } #if defined(Q_OS_LINUX)