From a0c0b5a865b28bc1ca57f2ab9afcfe73bf3d1ec2 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Thu, 24 May 2012 01:55:54 +0000 Subject: [PATCH] assdraw: remove wxADJUST_MINSIZE (which didn't actually do anything) Originally committed to SVN as r6854. --- contrib/assdraw/src/dlgctrl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/assdraw/src/dlgctrl.cpp b/contrib/assdraw/src/dlgctrl.cpp index ceb759eab..a96f3b129 100644 --- a/contrib/assdraw/src/dlgctrl.cpp +++ b/contrib/assdraw/src/dlgctrl.cpp @@ -99,7 +99,7 @@ ASSDrawTransformDlg::ASSDrawTransformDlg(ASSDrawFrame* parent) sizer_main->Add(sizer_templates, 0, wxGROW|wxLEFT, 5); sizer_templates->Add(new wxStaticText( this, -1, _("Templates"), __DPDS__ , 0 ), - 0, wxALIGN_CENTER_VERTICAL|wxALL|wxADJUST_MINSIZE, 5); + 0, wxALIGN_CENTER_VERTICAL|wxALL, 5); combo_templates = new wxComboBox( this, -1, combo_templatesStrings[0], __DPDS__ , 10, combo_templatesStrings, wxCB_READONLY ); sizer_templates->Add(combo_templates, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5); @@ -108,7 +108,7 @@ ASSDrawTransformDlg::ASSDrawTransformDlg(ASSDrawFrame* parent) sizer_main->Add(sizer_fields, 0, wxALIGN_CENTER_HORIZONTAL|wxLEFT, 5); int flag_txtctrl = wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL|wxALL; - int flag_statictxt = wxALIGN_RIGHT|wxALIGN_CENTER_VERTICAL|wxALL|wxADJUST_MINSIZE; + int flag_statictxt = wxALIGN_RIGHT|wxALIGN_CENTER_VERTICAL|wxALL; sizer_fields->Add(new wxStaticText( this, -1, _("m11"), __DPDS__ , 0 ), 0, flag_statictxt, 5);