diff --git a/aegisub/src/preferences_base.cpp b/aegisub/src/preferences_base.cpp index 023a0cd1a..a5fd8ce61 100644 --- a/aegisub/src/preferences_base.cpp +++ b/aegisub/src/preferences_base.cpp @@ -119,7 +119,7 @@ OptionPage::OptionPage(wxTreebook *book, Preferences *parent, wxString name, int template void OptionPage::Add(wxSizer *sizer, wxString const& label, T *control) { sizer->Add(new wxStaticText(this, -1, label), 1, wxEXPAND | wxALIGN_CENTRE_VERTICAL); - sizer->Add(control); + sizer->Add(control, wxSizerFlags().Expand()); } void OptionPage::CellSkip(wxFlexGridSizer *flex) {