From 6d215a86cac2b10c3612d14b55ff32d0b0ad3273 Mon Sep 17 00:00:00 2001 From: avihal Date: Tue, 11 Oct 2011 22:27:30 +0000 Subject: [PATCH] BUGFIX: GS window sometimes stayed hidden after pause/config. This fixes at least the following bug: Run a game -> ESC (GS Windows hides) -> config Video plugin and click OK -> Emulation resumes but GS window is hidden. (Solution was to click pause and then resume again, now it re-shows as it should). Let me know if it breaks other related scenarios or if there are other similar scenarios that got fixed (or that still need fixing). E.g. pausing/configuration while at full screen, etc. git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4933 96395faa-99c1-11dd-bbfe-3dabce05a288 --- pcsx2/gui/FrameForGS.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/pcsx2/gui/FrameForGS.cpp b/pcsx2/gui/FrameForGS.cpp index 8d92308143..eb2da6ffc1 100644 --- a/pcsx2/gui/FrameForGS.cpp +++ b/pcsx2/gui/FrameForGS.cpp @@ -445,6 +445,7 @@ wxStaticText* GSFrame::GetLabel_OutputDisabled() const void GSFrame::CoreThread_OnResumed() { m_timer_UpdateTitle.Start( TitleBarUpdateMs ); + if( !IsShown() ) Show(); } void GSFrame::CoreThread_OnSuspended()