Remove an unnecessary StretchSpacer from the color picker dialog that caused problems with wx 2.9.

Originally committed to SVN as r3246.
This commit is contained in:
Thomas Goyne 2009-07-24 00:50:31 +00:00
parent b7412a08c6
commit 3eacb9ba42
1 changed files with 0 additions and 1 deletions

View File

@ -584,7 +584,6 @@ DialogColorPicker::DialogColorPicker(wxWindow *parent, wxColour initial_color)
ass_input_sizer->Add(ass_input, 0);
ass_input_sizer->Add(new wxStaticText(this, -1, _T("HTML:"), wxDefaultPosition, colorinput_labelsize), 1, wxALIGN_CENTER_VERTICAL|wxEXPAND);
ass_input_sizer->Add(html_input, 0);
ass_input_sizer->AddStretchSpacer();
ass_input_sizer->AddGrowableCol(0,1);
rgb_box->Add(ass_input_sizer, 0, wxALL|wxCENTER|wxEXPAND, 3);