From: George Tasker Date: Thu, 26 Apr 2001 01:08:19 +0000 (+0000) Subject: Changed ::Fit() to only fit the sizer if the window is the top level window X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/9ef2e675a59798f7074696727bdb1a24da178a2c?ds=inline Changed ::Fit() to only fit the sizer if the window is the top level window git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9881 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/sizer.cpp b/src/common/sizer.cpp index fd78077c09..b3736d1754 100644 --- a/src/common/sizer.cpp +++ b/src/common/sizer.cpp @@ -355,7 +355,12 @@ bool wxSizer::Remove( int pos ) void wxSizer::Fit( wxWindow *window ) { - wxSize size = FitSize( window ); + wxSize size; + if (window->IsTopLevel()) + size = FitSize( window ); + else + size = GetMinWindowSize( window ); + window->SetSize( size ); }