From: Robin Dunn Date: Fri, 7 Nov 2003 07:04:55 +0000 (+0000) Subject: Calling sizerItem->SetWindow shoudl set the minsize too. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/1621c234d152d16afe6f016ad8a6f49ef780c02b Calling sizerItem->SetWindow shoudl set the minsize too. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24434 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/sizer.h b/include/wx/sizer.h index 3f7d8bc354..7f7481fed3 100644 --- a/include/wx/sizer.h +++ b/include/wx/sizer.h @@ -112,7 +112,7 @@ public: wxWindow *GetWindow() const { return m_window; } void SetWindow( wxWindow *window ) - { m_window = window; } + { m_window = window; m_minSize = window->GetSize(); } wxSizer *GetSizer() const { return m_sizer; } void SetSizer( wxSizer *sizer )