Merge pull request #2768 from Armada651/focus-pause

CFrame: Ignore "Pause on Focus Lost" when not started.
This commit is contained in:
Jules Blok 2015-07-23 08:11:45 +02:00
commit 2c7ae7787d
1 changed files with 1 additions and 1 deletions

View File

@ -1141,7 +1141,7 @@ void CFrame::OnMouse(wxMouseEvent& event)
void CFrame::OnFocusChange(wxFocusEvent& event)
{
if (SConfig::GetInstance().m_PauseOnFocusLost)
if (SConfig::GetInstance().m_PauseOnFocusLost && Core::IsRunningAndStarted())
{
if (RendererHasFocus())
{