- // By user request, keep the minimal size for this item
- // in sync with the largest of BestSize and any user supplied
- // minimum size hint. Useful in cases where the item is
- // changeable -- static text labels, etc.
- m_minSize = m_window->GetAdjustedBestSize();
+ // Since the size of the window may change during runtime, we
+ // 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;
+ m_minSize = min;