]> git.saurik.com Git - wxWidgets.git/commitdiff
Do not move the wxMDIParentFrame to (-10000,-10000) if it has a toolbar.
authorDavid Elliott <dfe@tgwbd.org>
Mon, 22 Nov 2004 20:19:37 +0000 (20:19 +0000)
committerDavid Elliott <dfe@tgwbd.org>
Mon, 22 Nov 2004 20:19:37 +0000 (20:19 +0000)
NOTE: Ideally the toolbar would be moved internally to wxMac into its own
floating frame and then the question of whether the parent frame should be
hidden would be one of "does it not have controls OTHER than a toolbar?"

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30708 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/mdi.cpp

index 0c80890f18b3ca40d97a0b62f7eb293ecd2ae177..542a76cdc786e8daacfd198b16bc24d878efc09d 100644 (file)
@@ -234,7 +234,8 @@ bool wxMDIParentFrame::Show( bool show )
     if ( show )
     {
         // TODO: check for other children
     if ( show )
     {
         // TODO: check for other children
-        Move(-10000, -10000);
+        if(!GetToolBar())
+            Move(-10000, -10000);
     }
 
     if ( !wxFrame::Show(show) )
     }
 
     if ( !wxFrame::Show(show) )