]> git.saurik.com Git - wxWidgets.git/commitdiff
Raise the scrollbars on reparenting (part of patch #9076)
authorJulian Smart <julian@anthemion.co.uk>
Fri, 25 Sep 2009 16:15:04 +0000 (16:15 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Fri, 25 Sep 2009 16:15:04 +0000 (16:15 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62131 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/osx/window_osx.cpp

index 0c00c583e0dbd693a6f1a13b671bc463bc060a63..f385c03f5b0d1f26f2fae8732e027d6ba2b7b77d 100644 (file)
@@ -2250,6 +2250,8 @@ bool wxWindowMac::Reparent(wxWindowBase *newParentBase)
 
     m_peer->RemoveFromParent();
     m_peer->Embed( GetParent()->GetPeer() );
+
+    MacChildAdded();
     return true;
 }