fix gamelist disappearing on linux, I hope it didn't break windows

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1016 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee 2008-10-30 17:10:34 +00:00
parent dd54a916fd
commit 50e413ff77
1 changed files with 4 additions and 4 deletions

View File

@ -679,10 +679,10 @@ void CFrame::UpdateGUI()
if (Core::GetState() == Core::CORE_UNINITIALIZED)
{
if (m_GameListCtrl && !m_GameListCtrl->IsShown())
{
sizerPanel->Fit(m_Panel);
m_GameListCtrl->Enable();
m_GameListCtrl->Show();
{
m_GameListCtrl->Enable();
m_GameListCtrl->Show();
sizerPanel->FitInside(m_Panel);
}
}
else