]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/sizer.cpp
Conditional compilation fix.
[wxWidgets.git] / src / common / sizer.cpp
index 37c790a4bddc5cec9cb41594b14c70db6f073257..7123f19c6a62a97926ef7082a6ea123758389bc1 100644 (file)
@@ -199,9 +199,12 @@ wxSize wxSizerItem::CalcMin()
             // should use the current minimal size.  If there is a MinSize,
             // use it, otherwise use the BestSize.
             wxSize min  = m_window->GetMinSize();
-            wxSize best = m_window->GetBestSize();
-            if (min.x == -1) min.x =  best.x;
-            if (min.y == -1) min.y =  best.y;
+            if (min.x == -1 || min.y == -1)
+            {
+                wxSize best = m_window->GetBestSize();
+                if (min.x == -1) min.x =  best.x;
+                if (min.y == -1) min.y =  best.y;
+            }
             m_minSize = min;
         }