]> git.saurik.com Git - wxWidgets.git/commitdiff
don't make wxBitmapButtons same size as all the other buttons
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 30 Dec 2001 00:31:23 +0000 (00:31 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 30 Dec 2001 00:31:23 +0000 (00:31 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13233 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

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;