]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/wincmn.cpp
wxToggleButton on wxMac has these methods now
[wxWidgets.git] / src / common / wincmn.cpp
index 0c419c047695c51db57f18ee1f348dea6ee4439f..6b6b35ab28ef78aa878c10b1df26ecef889a161d 100644 (file)
@@ -589,11 +589,14 @@ wxSize wxWindowBase::DoGetBestSize() const
 
         return wxSize(maxX, maxY);
     }
-    else // has children
+    else // has children
     {
-        // for a generic window there is no natural best size - just use the
-        // current size
-        return GetSize();
+        // for a generic window there is no natural best size - just use either the
+        // minimum size if there is one, or the current size
+        if ( GetMinSize().IsFullySpecified() )
+            return GetMinSize();
+        else
+            return GetSize();
     }
 }