mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
5856d77371
commit
84b17765c2
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue