From: Stefan Csomor Date: Sun, 6 Mar 2011 14:49:19 +0000 (+0000) Subject: fix positioning bug with window disabler and hidden windows X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b64af07b7c8a0c59ec5922c06a852b32c574e463 fix positioning bug with window disabler and hidden windows git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67133 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/osx/cocoa/evtloop.mm b/src/osx/cocoa/evtloop.mm index e558a54e25..08e690cbf4 100644 --- a/src/osx/cocoa/evtloop.mm +++ b/src/osx/cocoa/evtloop.mm @@ -307,6 +307,11 @@ void wxGUIEventLoop::BeginModalSession( wxWindow* modalWindow ) if ( modalWindow ) { + // we must show now, otherwise beginModalSessionForWindow does it but it + // also would do a centering of the window before overriding all our position + if ( !modalWindow->IsShownOnScreen() ) + modalWindow->Show(); + wxNonOwnedWindow* now = dynamic_cast (modalWindow); wxASSERT_MSG( now != NULL, "must pass in a toplevel window for modal event loop" ); nsnow = now ? now->GetWXWindow() : nil;