From 5efff1479ecb107c03099cd6d755dcdd6a93b3a4 Mon Sep 17 00:00:00 2001 From: David Webster Date: Thu, 5 Sep 2002 13:54:24 +0000 Subject: [PATCH] Fix for child window positioning git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16985 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/os2/window.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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(); } -- 2.50.0