]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/button.cpp
using Large System font for Buttons needs more space
[wxWidgets.git] / src / mac / button.cpp
index 52bd329993d52894dd348d2b15305c8c9e108970..cc3685a17d5a5d3334f3df4604b7a6242d54ffbc 100644 (file)
@@ -28,10 +28,6 @@ IMPLEMENT_DYNAMIC_CLASS(wxButton, wxControl)
 static const int kMacOSXHorizontalBorder = 2 ;
 static const int kMacOSXVerticalBorder = 4 ;
 
-wxButtonBase::wxButtonBase()
-{
-}
-
 bool wxButton::Create(wxWindow *parent, wxWindowID id, const wxString& label,
            const wxPoint& pos,
            const wxSize& size, long style,
@@ -91,7 +87,7 @@ wxSize wxButton::DoGetBestSize() const
 {
   wxSize sz = GetDefaultSize() ;
   
-  int wBtn = m_label.Length() * 8 + 12 + 2 * kMacOSXHorizontalBorder ;
+  int wBtn = m_label.Length() * 10 + 12 + 2 * kMacOSXHorizontalBorder ;
     
   if (wBtn > sz.x) sz.x = wBtn;