From: Julian Smart Date: Fri, 25 Sep 2009 16:15:04 +0000 (+0000) Subject: Raise the scrollbars on reparenting (part of patch #9076) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b80fdc029995a0c2ce04910e26d652292c64d7bc Raise the scrollbars on reparenting (part of patch #9076) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62131 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/osx/window_osx.cpp b/src/osx/window_osx.cpp index 0c00c583e0..f385c03f5b 100644 --- a/src/osx/window_osx.cpp +++ b/src/osx/window_osx.cpp @@ -2250,6 +2250,8 @@ bool wxWindowMac::Reparent(wxWindowBase *newParentBase) m_peer->RemoveFromParent(); m_peer->Embed( GetParent()->GetPeer() ); + + MacChildAdded(); return true; }