wxFlexGridSizer ctor was even used incorrectly in a wx sample: the sizer was
supposed to have 2 columns, not 4 with 2 pixels of vertical gap.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61639
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// attributes
wxStaticBox* box = new wxStaticBox( this, wxID_ANY, wxT("&Attributes") );
wxStaticBoxSizer* attrSizer = new wxStaticBoxSizer( box, wxHORIZONTAL );
- wxFlexGridSizer* xywhSizer = new wxFlexGridSizer( 4, 2 );
+ wxFlexGridSizer* xywhSizer = new wxFlexGridSizer( 2 );
wxStaticText* st;