X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/bc07ab17bf5370f452e899128bf89cc7ca7b98f0..c1cef60b50f9f7250a35724fca42f8cf1bed6a2a:/src/aui/floatpane.cpp diff --git a/src/aui/floatpane.cpp b/src/aui/floatpane.cpp index 1ee980a298..952cbfd345 100644 --- a/src/aui/floatpane.cpp +++ b/src/aui/floatpane.cpp @@ -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); }