should fix cases where the gamelist would stay active under the render window
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5146 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
c5ecd627ce
commit
3116a7ea1b
|
@ -547,6 +547,12 @@ void CFrame::DoOpen(bool Boot)
|
||||||
if (!fileChosen)
|
if (!fileChosen)
|
||||||
return;
|
return;
|
||||||
BootManager::BootCore(std::string(path.mb_str()));
|
BootManager::BootCore(std::string(path.mb_str()));
|
||||||
|
// Game has been started, hide the game list
|
||||||
|
if (m_GameListCtrl->IsShown())
|
||||||
|
{
|
||||||
|
m_GameListCtrl->Disable();
|
||||||
|
m_GameListCtrl->Hide();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue