gui: Fix memory card dialog message truncation

Use sizer flags so the messages aren't truncated. The message truncation
wasn't noticeable in English.
This commit is contained in:
Jonathan Li 2015-10-05 07:16:51 +01:00
parent 5856d77371
commit 84b17765c2

View File

@ -69,8 +69,8 @@ Panels::McdConfigPanel_Toggles::McdConfigPanel_Toggles(wxWindow *parent)
*this += 4;
*this += new wxStaticLine( this ) | StdExpand();
*this += m_check_Ejection;
*this += m_folderAutoIndex;
*this += m_check_Ejection | StdExpand();
*this += m_folderAutoIndex | StdExpand();
}
void Panels::McdConfigPanel_Toggles::Apply()