git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15044
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// for compatibility with other ports, the buttons default size is never
// less than the standard one
// for compatibility with other ports, the buttons default size is never
// less than the standard one
if ( !(GetWindowStyle() & wxBU_EXACTFIT) )
{
wxSize szDef = GetDefaultSize();
if ( width < szDef.x )
width = szDef.x;
}
if ( !(GetWindowStyle() & wxBU_EXACTFIT) )
{
wxSize szDef = GetDefaultSize();
if ( width < szDef.x )
width = szDef.x;
}
return wxSize(width, height);
}
return wxSize(width, height);
}