From: David Webster Date: Thu, 5 Sep 2002 13:54:24 +0000 (+0000) Subject: Fix for child window positioning X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/5efff1479ecb107c03099cd6d755dcdd6a93b3a4 Fix for child window positioning git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16985 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/os2/window.cpp b/src/os2/window.cpp index ce34797831..f17d44952a 100644 --- a/src/os2/window.cpp +++ b/src/os2/window.cpp @@ -4593,7 +4593,10 @@ void wxWindowOS2::MoveChildren( int nDiff ) { - if (GetAutoLayout()) + // + // We want to handle top levels ourself, manually + // + if (!IsTopLevel() && GetAutoLayout()) { Layout(); }