From 84b17765c2615cfd6a7d21774e99f0adb384a022 Mon Sep 17 00:00:00 2001 From: Jonathan Li Date: Mon, 5 Oct 2015 07:16:51 +0100 Subject: [PATCH] gui: Fix memory card dialog message truncation Use sizer flags so the messages aren't truncated. The message truncation wasn't noticeable in English. --- pcsx2/gui/Dialogs/McdConfigDialog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pcsx2/gui/Dialogs/McdConfigDialog.cpp b/pcsx2/gui/Dialogs/McdConfigDialog.cpp index 33ea27fe17..2537c5ad18 100644 --- a/pcsx2/gui/Dialogs/McdConfigDialog.cpp +++ b/pcsx2/gui/Dialogs/McdConfigDialog.cpp @@ -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()