mirror of
https://github.com/redstrate/Astra.git
synced 2025-05-11 20:47:45 +00:00
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.
This commit is contained in:
parent
d09f2d2418
commit
e70aeb3b6a
1 changed files with 5 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue