Changed values passed to SetClientSize() in CreateWidgets() so that buttons are not clipped by the dialog margin

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3396 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Michael Bedward 1999-08-16 23:04:00 +00:00
parent a24657845b
commit 40d4abbc70

View File

@ -254,7 +254,7 @@ void wxGenericColourDialog::CreateWidgets(void)
blueSlider = new wxSlider(this, wxID_BLUE_SLIDER, 0, 0, 255,
wxPoint(sliderX + 2*sliderSpacing, 10), wxSize(-1, sliderHeight), wxVERTICAL|wxSL_LABELS);
SetClientSize(sliderX + 3*sliderSpacing, buttonY + 40);
SetClientSize(sliderX + 3*sliderSpacing, buttonY + bh + 20);
okButton->SetDefault();
Centre(wxBOTH);