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
This commit is contained in:
avihal 2011-10-11 22:27:30 +00:00
parent 2e276316c6
commit 6d215a86ca
1 changed files with 1 additions and 0 deletions

View File

@ -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()