Qt: Don't show main window when changing setup wizard options

pull/3575/head
Stenzek 2 months ago
parent ceb6757524
commit a39d370c51
No known key found for this signature in database

@ -3047,7 +3047,10 @@ void MainWindow::checkForSettingChanges()
} }
LogWindow::updateSettings(); LogWindow::updateSettings();
updateWindowState();
// don't refresh window state while setup wizard is running, i.e. no game and hidden
if (isVisible() || s_system_valid || s_system_starting)
updateWindowState();
} }
std::optional<WindowInfo> MainWindow::getWindowInfo() std::optional<WindowInfo> MainWindow::getWindowInfo()

Loading…
Cancel
Save