From a39d370c513f3caeb6a8e4df9c560e6382fee328 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Wed, 17 Sep 2025 19:31:21 +1000 Subject: [PATCH] Qt: Don't show main window when changing setup wizard options --- src/duckstation-qt/mainwindow.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/duckstation-qt/mainwindow.cpp b/src/duckstation-qt/mainwindow.cpp index 0c79d1ae5..d66ddaeef 100644 --- a/src/duckstation-qt/mainwindow.cpp +++ b/src/duckstation-qt/mainwindow.cpp @@ -3047,7 +3047,10 @@ void MainWindow::checkForSettingChanges() } 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 MainWindow::getWindowInfo()