aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--shell/ChangeLog5
-rw-r--r--shell/e-shell-importer.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index a7b86247fb..b4f1a05695 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,8 @@
+2004-05-28 Rodney Dawes <dobey@novell.com>
+
+ * e-shell-importer.c (e_shell_importer_start_import):
+ Set the default window size for the druid to 480x320
+
2004-05-28 JP Rosevear <jpr@novell.com>
* e-shell-window-commands.c: remove bogus include
diff --git a/shell/e-shell-importer.c b/shell/e-shell-importer.c
index c83693a53b..373af53a8d 100644
--- a/shell/e-shell-importer.c
+++ b/shell/e-shell-importer.c
@@ -1157,6 +1157,7 @@ e_shell_importer_start_import (EShellWindow *shell_window)
data->wizard = glade_xml_new (EVOLUTION_GLADEDIR "/import.glade", NULL, NULL);
data->dialog = glade_xml_get_widget (data->wizard, "importwizard");
+ gtk_window_set_default_size (GTK_WINDOW (data->dialog), 480, 320);
gtk_window_set_wmclass (GTK_WINDOW (data->dialog), "importdruid",
"Evolution:shell");
e_dialog_set_transient_for (GTK_WINDOW (data->dialog), GTK_WIDGET (shell_window));