fixed transiency when the parent is MDI child frame
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29627 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -451,11 +451,13 @@ bool wxTopLevelWindowGTK::Create( wxWindow *parent,
|
||||
}
|
||||
}
|
||||
|
||||
if (m_parent && (((GTK_IS_WINDOW(m_parent->m_widget)) &&
|
||||
wxWindow *topParent = wxGetTopLevelParent(m_parent);
|
||||
if (topParent && (((GTK_IS_WINDOW(topParent->m_widget)) &&
|
||||
(GetExtraStyle() & wxTOPLEVEL_EX_DIALOG)) ||
|
||||
(style & wxFRAME_FLOAT_ON_PARENT)))
|
||||
{
|
||||
gtk_window_set_transient_for( GTK_WINDOW(m_widget), GTK_WINDOW(m_parent->m_widget) );
|
||||
gtk_window_set_transient_for( GTK_WINDOW(m_widget),
|
||||
GTK_WINDOW(topParent->m_widget) );
|
||||
}
|
||||
|
||||
#if GTK_CHECK_VERSION(2,2,0)
|
||||
|
Reference in New Issue
Block a user