increase min size to make all scrollbar controls visible

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36676 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor 2006-01-04 11:49:01 +00:00
parent 01b5ab3367
commit 9761ab4338

View File

@ -597,7 +597,7 @@ wxSize wxListBox::DoGetBestSize() const
// 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 );