From 5ff845876ff171e2c9f3d543f30c37dff2599a2e Mon Sep 17 00:00:00 2001 From: =?utf8?q?W=C5=82odzimierz=20Skiba?= Date: Fri, 3 Mar 2006 15:26:14 +0000 Subject: [PATCH] Stop invalidating size on wxTLW git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37787 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/wincmn.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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(); } -- 2.47.2