diff options
author | Iain Holmes <iain@src.gnome.org> | 2002-01-21 22:44:16 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2002-01-21 22:44:16 +0800 |
commit | fa21c59a5f421322ad1b678c6b9328c8c074dc6e (patch) | |
tree | 1398d1038bd6c801a3c2f965a7dd105ef60e2cb8 /shell/e-shell-importer.c | |
parent | 994338982fc75978670f0a42cf361b51e2f6e0cc (diff) | |
download | gsoc2013-evolution-fa21c59a5f421322ad1b678c6b9328c8c074dc6e.tar.gz gsoc2013-evolution-fa21c59a5f421322ad1b678c6b9328c8c074dc6e.tar.zst gsoc2013-evolution-fa21c59a5f421322ad1b678c6b9328c8c074dc6e.zip |
Stop the importer dialog going behind the main window
svn path=/trunk/; revision=15413
Diffstat (limited to 'shell/e-shell-importer.c')
-rw-r--r-- | shell/e-shell-importer.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/e-shell-importer.c b/shell/e-shell-importer.c index abb1edcbf1..c6e2bac359 100644 --- a/shell/e-shell-importer.c +++ b/shell/e-shell-importer.c @@ -1155,7 +1155,8 @@ show_import_wizard (BonoboUIComponent *component, data->dialog = glade_xml_get_widget (data->wizard, "importwizard"); gtk_window_set_wmclass (GTK_WINDOW (data->dialog), "importdruid", "Evolution:shell"); - + gtk_window_set_transient_for (GTK_WINDOW (data->dialog), GTK_WINDOW (user_data)); + data->druid = glade_xml_get_widget (data->wizard, "druid1"); gtk_signal_connect (GTK_OBJECT (data->druid), "cancel", GTK_SIGNAL_FUNC (import_druid_cancel), data); |