]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/carbon/anybutton.cpp
make sure we have a default handling the quit command, see #12402
[wxWidgets.git] / src / osx / carbon / anybutton.cpp
index 36a642a698ed8ba41c2e0629b44a502a8d166b55..b24b73b47c1f82abb63d37584337a6c89c03a57c 100644 (file)
@@ -53,7 +53,17 @@ wxSize wxAnyButton::DoGetBestSize() const
     GetPeer()->GetBestRect( &bestsize ) ;
 
     int wBtn;
-    if ( EmptyRect( &bestsize ) || ( GetWindowStyle() & wxBU_EXACTFIT) )
+    if ( GetBitmapLabel().IsOk() )
+    {
+        sz.x = bestsize.right - bestsize.left ;
+        sz.y = bestsize.bottom - bestsize.top ;
+        sz.x  = sz.x  + MacGetLeftBorderSize() +
+        MacGetRightBorderSize();
+        sz.y = sz.y + MacGetTopBorderSize() +
+        MacGetBottomBorderSize();
+        wBtn = sz.x;
+    }
+    else if ( EmptyRect( &bestsize ) || ( GetWindowStyle() & wxBU_EXACTFIT) )
     {
         Point bounds;