From ef2f095a5ff3c545e84d9afbfa9432f5fed7bcfe Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 30 Dec 2001 00:31:23 +0000 Subject: [PATCH] don't make wxBitmapButtons same size as all the other buttons git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13233 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/univ/bmpbuttn.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/univ/bmpbuttn.cpp b/src/univ/bmpbuttn.cpp index 597d656323..f73fb8cd96 100644 --- a/src/univ/bmpbuttn.cpp +++ b/src/univ/bmpbuttn.cpp @@ -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; -- 2.50.0