aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2003-03-18 06:22:33 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2003-03-18 06:22:33 +0800
commit8febd0e5ac1d1b41e36e94c60fd718a2638626ca (patch)
tree3b158d52d608cd77b29e2dff2c663c8cce289dd8
parent13398c9928a151d593399480b05674a5cf44abf4 (diff)
downloadgsoc2013-evolution-8febd0e5ac1d1b41e36e94c60fd718a2638626ca.tar
gsoc2013-evolution-8febd0e5ac1d1b41e36e94c60fd718a2638626ca.tar.gz
gsoc2013-evolution-8febd0e5ac1d1b41e36e94c60fd718a2638626ca.tar.bz2
gsoc2013-evolution-8febd0e5ac1d1b41e36e94c60fd718a2638626ca.tar.lz
gsoc2013-evolution-8febd0e5ac1d1b41e36e94c60fd718a2638626ca.tar.xz
gsoc2013-evolution-8febd0e5ac1d1b41e36e94c60fd718a2638626ca.tar.zst
gsoc2013-evolution-8febd0e5ac1d1b41e36e94c60fd718a2638626ca.zip
Set the default window size to something reasonable (350x400?). Fixes bug
2003-03-17 Jeffrey Stedfast <fejj@ximian.com> * rule-editor.c (rule_editor_construct): Set the default window size to something reasonable (350x400?). Fixes bug #39808. svn path=/trunk/; revision=20323
-rw-r--r--filter/ChangeLog3
-rw-r--r--filter/rule-editor.c1
2 files changed, 4 insertions, 0 deletions
diff --git a/filter/ChangeLog b/filter/ChangeLog
index aece10729b..c47fc46cf5 100644
--- a/filter/ChangeLog
+++ b/filter/ChangeLog
@@ -1,5 +1,8 @@
2003-03-17 Jeffrey Stedfast <fejj@ximian.com>
+ * rule-editor.c (rule_editor_construct): Set the default window
+ size to something reasonable (350x400?). Fixes bug #39808.
+
* vfolder-rule.c (source_remove): Fixed to work properly. Fixes
bug #39654.
diff --git a/filter/rule-editor.c b/filter/rule-editor.c
index 3e9290801f..f353487420 100644
--- a/filter/rule-editor.c
+++ b/filter/rule-editor.c
@@ -713,6 +713,7 @@ rule_editor_construct (RuleEditor *re, RuleContext *context, GladeXML *gui, cons
g_object_ref (context);
gtk_window_set_resizable ((GtkWindow *) re, TRUE);
+ gtk_window_set_default_size ((GtkWindow *) re, 350, 400);
w = glade_xml_get_widget (gui, "rule_editor");
gtk_box_pack_start (GTK_BOX (GTK_DIALOG (re)->vbox), w, TRUE, TRUE, 0);