From fa21c59a5f421322ad1b678c6b9328c8c074dc6e Mon Sep 17 00:00:00 2001 From: Iain Holmes Date: Mon, 21 Jan 2002 14:44:16 +0000 Subject: Stop the importer dialog going behind the main window svn path=/trunk/; revision=15413 --- shell/ChangeLog | 5 +++++ shell/e-shell-importer.c | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/shell/ChangeLog b/shell/ChangeLog index 51b12f18ec..7e458f35fc 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2002-01-15 Iain Holmes + + * e-shell-importer.c (show_import_wizard): Set the importer druid + as a transient window of the parent shell. + 2002-01-15 Ettore Perazzoli [Fix #17441, Crash trying to import Multiple VCard file into LDAP 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); -- cgit