Must call DoMoveWindow in Create() or buttons may not be

moved


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22976 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart 2003-08-17 16:31:18 +00:00
parent 99f677aef3
commit d2699196d3

View File

@ -153,6 +153,11 @@ bool wxRadioBox::Create(wxWindow *parent,
SetClientSize(DoGetBestClientSize());
}
// Need to move the radiobox in order to move the radio buttons
wxPoint actualPos = GetPosition();
wxSize actualSize = GetSize();
DoMoveWindow(actualPos.x, actualPos.y, actualSize.x, actualSize.y);
// radiobox should already have selection so select at least one item
SetSelection(0);