]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/button.cpp
call wxApp::OnExceptionInMainLoop() when an exception occurs (refactored the change...
[wxWidgets.git] / src / gtk1 / button.cpp
index 68e6eb534685c637559cf496b319803030ad3ce8..a3f112390869fb1c1d7d009c5ae67c7f6fc22d69 100644 (file)
@@ -212,6 +212,10 @@ wxSize wxButton::DoGetBestSize() const
 {
     wxSize ret( wxControl::DoGetBestSize() );
 
+#ifndef __WXGTK20__
+    ret.x += 10;  // add a few pixels for sloppy (but common) themes
+#endif
+    
     if (!HasFlag(wxBU_EXACTFIT))
     {
         if (ret.x < 80) ret.x = 80;