From 83bb2eceddeb7114dcc18e4dcf10abd114f667b7 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Fri, 24 Jul 2009 02:18:11 +0000 Subject: [PATCH] Fix the number of rows in another sizer. Originally committed to SVN as r3251. --- aegisub/src/export_framerate.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aegisub/src/export_framerate.cpp b/aegisub/src/export_framerate.cpp index cb6ea55d1..8eb617c8a 100644 --- a/aegisub/src/export_framerate.cpp +++ b/aegisub/src/export_framerate.cpp @@ -125,7 +125,7 @@ wxWindow *AssTransformFramerateFilter::GetConfigDialogWindow(wxWindow *parent) { OutputSizer->Add(OutputSizerBottom,0,wxLEFT,5); // Main window - wxSizer *MainSizer = new wxFlexGridSizer(2,2,5,10); + wxSizer *MainSizer = new wxFlexGridSizer(3,2,5,10); MainSizer->Add(new wxStaticText(base,-1,_("Input framerate: ")),0,wxEXPAND | wxALIGN_CENTER_VERTICAL,0); MainSizer->Add(InputSizer,0,wxEXPAND,0); MainSizer->Add(new wxStaticText(base,-1,_("Output: ")),0,wxALIGN_CENTER_VERTICAL,0);