]> 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 253671b6fecd2ffdcab542a648ec84a63f5effb6..cc3685a17d5a5d3334f3df4604b7a6242d54ffbc 100644 (file)
@@ -25,8 +25,8 @@ IMPLEMENT_DYNAMIC_CLASS(wxButton, wxControl)
 #include "wx/mac/uma.h"
 // Button
 
-static const int kMacOSXHorizontalBorder = 1 ;
-static const int kMacOSXVerticalBorder = 1 ;
+static const int kMacOSXHorizontalBorder = 2 ;
+static const int kMacOSXVerticalBorder = 4 ;
 
 bool wxButton::Create(wxWindow *parent, wxWindowID id, const wxString& label,
            const wxPoint& pos,
@@ -87,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;