From bb0609372d21e1ee916f6da274b9ff889aa433c2 Mon Sep 17 00:00:00 2001 From: Megamouse Date: Sun, 24 Feb 2019 16:03:25 +0100 Subject: [PATCH] Qt: go out of fullsceen if exit game pop up is triggered --- rpcs3/rpcs3qt/gs_frame.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/rpcs3/rpcs3qt/gs_frame.cpp b/rpcs3/rpcs3qt/gs_frame.cpp index a79ebd0818..6057a953ed 100644 --- a/rpcs3/rpcs3qt/gs_frame.cpp +++ b/rpcs3/rpcs3qt/gs_frame.cpp @@ -493,6 +493,11 @@ bool gs_frame::event(QEvent* ev) { if (m_gui_settings->GetValue(gui::ib_confirm_exit).toBool()) { + if (visibility() == FullScreen) + { + toggle_fullscreen(); + } + int result; Emu.CallAfter([this, &result]()