mirror of https://github.com/PCSX2/pcsx2.git
Qt: Fix main window briefly showing when exiting game in FSUI
This commit is contained in:
parent
5647ca7f08
commit
0a8547a692
|
@ -1158,7 +1158,7 @@ bool MainWindow::requestShutdown(bool allow_confirm /* = true */, bool allow_sav
|
||||||
// reshow the main window during display updates, because otherwise fullscreen transitions and renderer switches
|
// reshow the main window during display updates, because otherwise fullscreen transitions and renderer switches
|
||||||
// would briefly show and then hide the main window. So instead, we do it on shutdown, here. Except if we're in
|
// would briefly show and then hide the main window. So instead, we do it on shutdown, here. Except if we're in
|
||||||
// batch mode, when we're going to exit anyway.
|
// batch mode, when we're going to exit anyway.
|
||||||
if (!isRenderingToMain() && isHidden() && !QtHost::InBatchMode())
|
if (!isRenderingToMain() && isHidden() && !QtHost::InBatchMode() && !g_emu_thread->isRunningFullscreenUI())
|
||||||
updateWindowState(true);
|
updateWindowState(true);
|
||||||
|
|
||||||
// Now we can actually shut down the VM.
|
// Now we can actually shut down the VM.
|
||||||
|
|
Loading…
Reference in New Issue