aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorRodney Dawes <dobey@novell.com>2004-05-29 03:02:57 +0800
committerRodney Dawes <dobey@src.gnome.org>2004-05-29 03:02:57 +0800
commit057e323832c67ab43c160c0a3f6f8a3e0271aa5e (patch)
tree9df4552d0474a65ab7682a960e06f595c9c657b4 /shell
parent286df8d713e269cbdedae651c72072d521c703a4 (diff)
downloadgsoc2013-evolution-057e323832c67ab43c160c0a3f6f8a3e0271aa5e.tar
gsoc2013-evolution-057e323832c67ab43c160c0a3f6f8a3e0271aa5e.tar.gz
gsoc2013-evolution-057e323832c67ab43c160c0a3f6f8a3e0271aa5e.tar.bz2
gsoc2013-evolution-057e323832c67ab43c160c0a3f6f8a3e0271aa5e.tar.lz
gsoc2013-evolution-057e323832c67ab43c160c0a3f6f8a3e0271aa5e.tar.xz
gsoc2013-evolution-057e323832c67ab43c160c0a3f6f8a3e0271aa5e.tar.zst
gsoc2013-evolution-057e323832c67ab43c160c0a3f6f8a3e0271aa5e.zip
Set the default window size for the druid to 480x320
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 svn path=/trunk/; revision=26127
Diffstat (limited to 'shell')
-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));