]> git.saurik.com Git - wxWidgets.git/commitdiff
change to a tiny minimal value for DoGetBestSize in case of existing entries
authorStefan Csomor <csomor@advancedconcepts.ch>
Thu, 6 Mar 2003 21:38:12 +0000 (21:38 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Thu, 6 Mar 2003 21:38:12 +0000 (21:38 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19521 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/choice.cpp
src/mac/choice.cpp

index a53b5715cea7d8a82ca338c2e0de2ae51cd06dce..863b944cb4deed30a7f134c003ed2cfe847d6496 100644 (file)
@@ -211,7 +211,7 @@ void wxChoice::MacHandleControlClick( WXWidget control , wxInt16 controlpart )
 
 wxSize wxChoice::DoGetBestSize() const
 {
-    int lbWidth = 100;  // some defaults
+    int lbWidth = GetCount() > 0 ? 20 : 100;  // some defaults
     int lbHeight = 20;
     int wLine;
 #if TARGET_CARBON
index a53b5715cea7d8a82ca338c2e0de2ae51cd06dce..863b944cb4deed30a7f134c003ed2cfe847d6496 100644 (file)
@@ -211,7 +211,7 @@ void wxChoice::MacHandleControlClick( WXWidget control , wxInt16 controlpart )
 
 wxSize wxChoice::DoGetBestSize() const
 {
-    int lbWidth = 100;  // some defaults
+    int lbWidth = GetCount() > 0 ? 20 : 100;  // some defaults
     int lbHeight = 20;
     int wLine;
 #if TARGET_CARBON