follow up parent chain to properly support modal dialog parents, see #15383
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74623 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
d4d83a46a9
commit
71d9783779
@ -658,7 +658,7 @@ long style, long extraStyle, const wxString& WXUNUSED(name) )
|
||||
// If the parent is modal, windows with wxFRAME_FLOAT_ON_PARENT style need
|
||||
// to be in kCGUtilityWindowLevel and not kCGFloatingWindowLevel to stay
|
||||
// above the parent.
|
||||
wxDialog * const parentDialog = wxDynamicCast(parent, wxDialog);
|
||||
wxDialog * const parentDialog = parent == NULL ? NULL : wxDynamicCast(parent->MacGetTopLevelWindow(), wxDialog);
|
||||
if (parentDialog && parentDialog->IsModal())
|
||||
{
|
||||
if (level == kCGFloatingWindowLevel)
|
||||
|
Loading…
Reference in New Issue
Block a user