extern bool g_isIdle;
extern int g_openDialogs;
-
-
//-----------------------------------------------------------------------------
// wxDialog
//-----------------------------------------------------------------------------
if ( !GetParent() && !(GetWindowStyleFlag() & wxDIALOG_NO_PARENT) )
{
wxWindow *parent = wxTheApp->GetTopWindow();
- if ( parent && parent != this && parent->IsBeingDeleted() )
+ if ( parent &&
+ parent != this &&
+ parent->IsBeingDeleted() &&
+ !(parent->GetExtraStyle() & wxWS_EX_TRANSIENT) )
{
m_parent = parent;
gtk_window_set_transient_for( GTK_WINDOW(m_widget), GTK_WINDOW(parent->m_widget) );
}
wxBusyCursorSuspender cs; // temporarily suppress the busy cursor
-
+
Show( TRUE );
+ SetFocus();
+
m_modalShowing = TRUE;
g_openDialogs++;