]> git.saurik.com Git - wxWidgets.git/blobdiff - src/univ/bmpbuttn.cpp
updated xml project file with latest changes (spinctrl, display, msgout, ...)
[wxWidgets.git] / src / univ / bmpbuttn.cpp
index 597d65632345e4fbc79c3a7b4c757778e7ccf6c1..f73fb8cd96916391a26fc655bdc2ad81975cf6d8 100644 (file)
@@ -61,8 +61,11 @@ bool wxBitmapButton::Create(wxWindow *parent,
                             const wxValidator& validator,
                             const wxString &name)
 {
+    // we add wxBU_EXACTFIT because the bitmap buttons are not the standard
+    // ones and so shouldn't be forced to be of the standard size which is
+    // typically too big for them
     if ( !wxButton::Create(parent, id, bitmap, _T(""),
-                           pos, size, style, validator, name) )
+                           pos, size, style | wxBU_EXACTFIT, validator, name) )
         return FALSE;
 
     m_bmpNormal = bitmap;