]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/listbox.cpp
more region tests
[wxWidgets.git] / src / msw / listbox.cpp
index 147e73c917c49c68fff0260baa60ca31ef0cc24b..e466ae97eed8e4c10f2194a932eecdce66c1b5d1 100644 (file)
@@ -663,7 +663,10 @@ wxSize wxListBox::DoGetBestSize() const
 
     wListbox += 3*cx;
 
-    int hListbox = EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy)*(wxMax(m_noItems, 7));
+    // don't make the listbox too tall (limit height to 10 items) but don't
+    // make it too small neither
+    int hListbox = EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy)*
+                    wxMin(wxMax(m_noItems, 3), 10);
 
     return wxSize(wListbox, hListbox);
 }