Fix a small text overlapping issue in the MemcardManager.

This commit is contained in:
Lioncash 2013-01-13 22:28:36 -05:00
parent 511342edad
commit 47792b02a5
1 changed files with 3 additions and 0 deletions

View File

@ -777,6 +777,9 @@ bool CMemcardManager::ReloadMemcard(const char *fileName, int card)
memoryCard[card]->GetFreeBlocks(), DIRLEN - nFiles);
t_Status[card]->SetLabel(wxLabel);
// Done so text doesn't overlap the UI.
this->Fit();
return true;
}