From: Włodzimierz Skiba Date: Fri, 3 Mar 2006 15:26:14 +0000 (+0000) Subject: Stop invalidating size on wxTLW X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/5ff845876ff171e2c9f3d543f30c37dff2599a2e Stop invalidating size on wxTLW git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37787 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/wincmn.cpp b/src/common/wincmn.cpp index 7b458dca63..09a2f04668 100644 --- a/src/common/wincmn.cpp +++ b/src/common/wincmn.cpp @@ -446,8 +446,9 @@ void wxWindowBase::InvalidateBestSize() m_bestSizeCache = wxDefaultSize; // parent's best size calculation may depend on its children's - // best sizes, so let's invalidate it as well to be safe: - if (m_parent) + // best sizes, so let's invalidate it as well to be safe + // (but don't influence other wxTLWs) + if (m_parent && !IsTopLevel()) m_parent->InvalidateBestSize(); }