From e70aeb3b6a48559cdca7be6a775b2069a1274cea Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Mon, 5 May 2025 15:54:00 -0400 Subject: [PATCH] Note in the Wine version text if Astra will download it The text "Wine is not installed." could be misleading. If it's managed by Astra, say that it will be installed when you next launch the game instead. --- launcher/src/profile.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/launcher/src/profile.cpp b/launcher/src/profile.cpp index 297e5a2..48488ed 100644 --- a/launcher/src/profile.cpp +++ b/launcher/src/profile.cpp @@ -250,7 +250,11 @@ QString Profile::uuid() const QString Profile::wineVersionText() const { if (!isWineInstalled()) { - return i18n("Wine is not installed."); + if (config()->wineType() == Profile::WineType::BuiltIn) { + return i18n("Wine will be installed when you launch the game."); + } else { + return i18n("Wine is not installed."); + } } else { return m_wineVersion; }