]> git.saurik.com Git - wxWidgets.git/commitdiff
BU_EXACTFIT adapted
authorStefan Csomor <csomor@advancedconcepts.ch>
Thu, 17 Jun 2004 08:06:33 +0000 (08:06 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Thu, 17 Jun 2004 08:06:33 +0000 (08:06 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27851 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/button.cpp

index 94610153a1358a2bd7661522156c6a2bc62e2a3a..f13104ae68cfcab965f113d46edcd742625de3e7 100644 (file)
@@ -98,7 +98,8 @@ wxSize wxButton::DoGetBestSize() const
   
   int wBtn = m_label.Length() * charspace + 12 ;
  
   
   int wBtn = m_label.Length() * charspace + 12 ;
  
-  if (wBtn > sz.x) sz.x = wBtn;
+  if (wBtn > sz.x || ( GetWindowStyle() & wxBU_EXACTFIT) ) 
+    sz.x = wBtn;
   
   return sz ;
 }
   
   return sz ;
 }