From: Stefan Csomor Date: Mon, 25 Jan 2010 13:27:59 +0000 (+0000) Subject: adding wxWindow::Show in order to make the sheet showing its children as well X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f44af1dc9e60397a45dfe661d4db0484f59c798e adding wxWindow::Show in order to make the sheet showing its children as well git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63259 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/osx/cocoa/dialog.mm b/src/osx/cocoa/dialog.mm index 2e6a9e4415..47a50ba404 100644 --- a/src/osx/cocoa/dialog.mm +++ b/src/osx/cocoa/dialog.mm @@ -33,6 +33,8 @@ void wxDialog::ShowWindowModal() NSWindow* parentWindow = parent->GetWXWindow(); NSWindow* theWindow = GetWXWindow(); + wxWindow::Show(true); + [NSApp beginSheet: theWindow modalForWindow: parentWindow modalDelegate: theWindow