]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/choice_osx.cpp
Fix numpad Del not working in wxRTC
[wxWidgets.git] / src / osx / choice_osx.cpp
index a2c780ec582d1715da16f43387af0bf0246196b2..9702a7da67d1634a75ee703a90f5eacbdfd3cee4 100644 (file)
@@ -256,7 +256,8 @@ bool wxChoice::OSXHandleClicked( double WXUNUSED(timestampsec) )
 wxSize wxChoice::DoGetBestSize() const
 {
     int lbWidth = GetCount() > 0 ? 20 : 100;  // some defaults
-    int lbHeight = 20;
+    wxSize baseSize = wxWindow::DoGetBestSize();
+    int lbHeight = baseSize.y;
     int wLine;
 
     {
@@ -280,7 +281,6 @@ wxSize wxChoice::DoGetBestSize() const
         wxCoord width, height ;
         dc.GetTextExtent( wxT("X"), &width, &height);
         int cx = width ;
-        lbHeight += 4;
 
         lbWidth += cx ;
     }