]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/bmpbuttn.cpp
Add dependency on tabmdi.h
[wxWidgets.git] / src / mac / carbon / bmpbuttn.cpp
index 2c149dd7d9fb894148fab6d84cfe75497d5c027e..26ee9dc9535eaddcfb2ef3572ff54e7b5003c862 100644 (file)
@@ -16,8 +16,7 @@
 #include "wx/bmpbuttn.h"
 
 #ifndef WX_PRECOMP
-    #include "wx/window.h"
-    #include "wx/bitmap.h"
+    #include "wx/dcmemory.h"
 #endif
 
 IMPLEMENT_DYNAMIC_CLASS(wxBitmapButton, wxButton)
@@ -56,12 +55,12 @@ bool wxBitmapButton::Create( wxWindow *parent,
     Rect bounds = wxMacGetBoundsForControl( this, pos, size );
     m_peer = new wxMacControl( this );
 
-    if ( bitmap.Ok() && !size.IsFullySpecified() )
+    if ( bitmap.Ok() && HasFlag(wxBORDER_NONE) )
     {
-        // in Mac OS X the bitmap buttons can have only one of the few standard
-        // sizes and if they don't, the OS rescales them automatically
-        // resulting in really ugly images, so centre the image in a square of
-        // standard size instead
+        // in Mac OS X the icon controls (which are used for borderless bitmap
+        // buttons) can have only one of the few standard sizes and if they
+        // don't, the OS rescales them automatically resulting in really ugly
+        // images, so centre the image in a square of standard size instead
 
         // the supported sizes, sorted in decreasng order
         static const int stdSizes[] = { 128, 48, 32, 16, 0 };