]> git.saurik.com Git - wxWidgets.git/blobdiff - src/aui/floatpane.cpp
bitwise vs. logical operator
[wxWidgets.git] / src / aui / floatpane.cpp
index 1ee980a2985d3ec5db7bf31f7be723387e91475e..952cbfd3451c5bbae942692a8375ec19106f92d7 100644 (file)
@@ -97,8 +97,10 @@ void wxAuiFloatingFrame::SetPaneWindow(const wxAuiPaneInfo& pane)
     // if the frame window's max size is greater than the min size
     // then set the max size to the min size as well
     wxSize cur_max_size = GetMaxSize();
-    if (cur_max_size.x < pane.min_size.x ||
-        cur_max_size.y < pane.min_size.y)
+    if (cur_max_size.IsFullySpecified() &&
+          (cur_max_size.x < pane.min_size.x ||
+           cur_max_size.y < pane.min_size.y)
+       )
     {
         SetMaxSize(pane_min_size);
     }