diff --git a/launcher/core/include/launchercore.h b/launcher/core/include/launchercore.h index 379c1de..dc30333 100755 --- a/launcher/core/include/launchercore.h +++ b/launcher/core/include/launchercore.h @@ -27,8 +27,7 @@ enum class WineType { System, Custom, Builtin, // macos only - XIVOnMac, // macos only - Proton // steam proton, only available when launched via Steam + XIVOnMac // macos only }; enum class DalamudChannel { diff --git a/launcher/desktop/src/settingswindow.cpp b/launcher/desktop/src/settingswindow.cpp index 5ebb44a..b81d00f 100644 --- a/launcher/desktop/src/settingswindow.cpp +++ b/launcher/desktop/src/settingswindow.cpp @@ -486,17 +486,12 @@ void SettingsWindow::setupWineTab(QFormLayout& layout) { wineTypeCombo->insertItem(3, "XIV on Mac"); #endif - if (core.isSteam) { - wineTypeCombo->insertItem(0, "Steam Proton"); - wineTypeCombo->setEnabled(false); - } else { - wineTypeCombo->insertItem(0, "System Wine"); + wineTypeCombo->insertItem(0, "System Wine"); // custom wine selection is broken under flatpak #ifndef FLATPAK - wineTypeCombo->insertItem(1, "Custom Wine"); + wineTypeCombo->insertItem(1, "Custom Wine"); #endif - } layout.addWidget(wineTypeCombo);