Changed screen to window. Moved UpdateGUI to a more general scope.

This commit is contained in:
Gerik Kubiak
2015-03-17 12:14:14 -07:00
parent 0a28f7de13
commit ae4e8b6358
2 changed files with 2 additions and 4 deletions

View File

@ -1188,8 +1188,6 @@ void CFrame::OnFocusChange(wxFocusEvent& event)
if (SConfig::GetInstance().m_LocalCoreStartupParameter.bHideCursor)
m_RenderParent->SetCursor(wxCURSOR_BLANK);
}
UpdateGUI();
}
else
{
@ -1200,8 +1198,8 @@ void CFrame::OnFocusChange(wxFocusEvent& event)
m_RenderParent->SetCursor(wxNullCursor);
Core::UpdateTitle();
}
UpdateGUI();
}
UpdateGUI();
}
}