From ea19514b53e40a51e126045989d28e399280d3e0 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Sun, 2 Oct 2022 01:14:39 +1000 Subject: [PATCH] Qt: Fix main window hiding with EFS bug --- pcsx2-qt/MainWindow.cpp | 6 +++++- pcsx2-qt/QtHost.h | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/pcsx2-qt/MainWindow.cpp b/pcsx2-qt/MainWindow.cpp index e6fd7bd71c..d749d7f669 100644 --- a/pcsx2-qt/MainWindow.cpp +++ b/pcsx2-qt/MainWindow.cpp @@ -1021,7 +1021,10 @@ bool MainWindow::shouldHideMouseCursor() const bool MainWindow::shouldHideMainWindow() const { - return Host::GetBaseBoolSettingValue("UI", "HideMainWindowWhenRunning", false) || isRenderingFullscreen() || QtHost::InNoGUIMode(); + // NOTE: We can't use isRenderingToMain() here, because this happens post-fullscreen-switch. + return Host::GetBaseBoolSettingValue("UI", "HideMainWindowWhenRunning", false) || + (g_emu_thread->shouldRenderToMain() && isRenderingFullscreen()) || + QtHost::InNoGUIMode(); } void MainWindow::switchToGameListView() @@ -1896,6 +1899,7 @@ DisplayWidget* MainWindow::updateDisplay(bool fullscreen, bool render_to_main, b m_display_widget->setShouldHideCursor(shouldHideMouseCursor()); m_display_widget->updateRelativeMode(s_vm_valid && !s_vm_paused); m_display_widget->updateCursor(s_vm_valid && !s_vm_paused); + updateWindowState(); QCoreApplication::processEvents(QEventLoop::ExcludeUserInputEvents); return m_display_widget; diff --git a/pcsx2-qt/QtHost.h b/pcsx2-qt/QtHost.h index d35d09c2ad..2d34fa5e71 100644 --- a/pcsx2-qt/QtHost.h +++ b/pcsx2-qt/QtHost.h @@ -67,6 +67,7 @@ public: __fi bool isRunningFullscreenUI() const { return m_run_fullscreen_ui; } bool isOnEmuThread() const; + bool shouldRenderToMain() const; /// Called back from the GS thread when the display state changes (e.g. fullscreen, render to main). bool acquireHostDisplay(HostDisplay::RenderAPI api); @@ -166,7 +167,6 @@ private: void destroyVM(); void executeVM(); - bool shouldRenderToMain() const; void createBackgroundControllerPollTimer(); void destroyBackgroundControllerPollTimer();