git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36676
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// don't make the listbox too tall (limit height to around 10 items)
// but don't make it too small neither
// don't make the listbox too tall (limit height to around 10 items)
// but don't make it too small neither
- lbHeight = (cy + 4) * wxMin( wxMax( GetCount(), 3 ), 10 );
+ lbHeight = wxMax( (cy + 4) * wxMin( wxMax( GetCount(), 3 ), 10 ), 70 );
}
return wxSize( lbWidth, lbHeight );
}
return wxSize( lbWidth, lbHeight );