don't use GetParent() in GetParentForModalDialog() itself as it can be called before m_parent is initialized
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60573 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -111,7 +111,7 @@ int wxDialog::ShowModal()
|
||||
if ( win )
|
||||
win->GTKReleaseMouseAndNotify();
|
||||
|
||||
wxWindow * const parent = GetParentForModalDialog();
|
||||
wxWindow * const parent = GetParentForModalDialog(GetParent());
|
||||
if ( parent )
|
||||
{
|
||||
gtk_window_set_transient_for( GTK_WINDOW(m_widget),
|
||||
|
Reference in New Issue
Block a user