diff --git a/src/mac/carbon/button.cpp b/src/mac/carbon/button.cpp index 9d36b45e94..dbd5aa6b6c 100644 --- a/src/mac/carbon/button.cpp +++ b/src/mac/carbon/button.cpp @@ -194,7 +194,8 @@ wxSize wxButton::DoGetBestSize() const else { wBtn = bestsize.right - bestsize.left ; - sz.y = bestsize.bottom - bestsize.top ; + // non 'normal' window variants don't return the correct height + // sz.y = bestsize.bottom - bestsize.top ; } if ((wBtn > sz.x) || ( GetWindowStyle() & wxBU_EXACTFIT))