aboutsummaryrefslogtreecommitdiffstats
path: root/filter
diff options
context:
space:
mode:
authorAnna Dirks <anna@src.gnome.org>2001-07-10 00:28:54 +0800
committerAnna Dirks <anna@src.gnome.org>2001-07-10 00:28:54 +0800
commit3adc63f509900a098689691677df988dcfe0b941 (patch)
tree8fe961166209d549f23ed20349daed6dffabeb01 /filter
parentfcda5ec759395e2a9d658ebcf3616943793a7a28 (diff)
downloadgsoc2013-evolution-3adc63f509900a098689691677df988dcfe0b941.tar
gsoc2013-evolution-3adc63f509900a098689691677df988dcfe0b941.tar.gz
gsoc2013-evolution-3adc63f509900a098689691677df988dcfe0b941.tar.bz2
gsoc2013-evolution-3adc63f509900a098689691677df988dcfe0b941.tar.lz
gsoc2013-evolution-3adc63f509900a098689691677df988dcfe0b941.tar.xz
gsoc2013-evolution-3adc63f509900a098689691677df988dcfe0b941.tar.zst
gsoc2013-evolution-3adc63f509900a098689691677df988dcfe0b941.zip
2001-07-09 Anna Marie Dirks
*rule-context.c (rule_context_add_rule_gui): Increased the size of the "Add Filter Rule" dialog to 600 x 400, so that no resizing is necessary to use the dialog. svn path=/trunk/; revision=10914
Diffstat (limited to 'filter')
-rw-r--r--filter/ChangeLog5
-rw-r--r--filter/rule-context.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/filter/ChangeLog b/filter/ChangeLog
index ab0408dc26..69a7582363 100644
--- a/filter/ChangeLog
+++ b/filter/ChangeLog
@@ -1,3 +1,8 @@
+2001-07-09 Anna Marie Dirks
+ *rule-context.c (rule_context_add_rule_gui): Increased the size
+ of the "Add Filter Rule" dialog to 600 x 400, so that no resizing
+ is necessary to use the dialog.
+
2001-07-09 Jon Trowbridge <trow@ximian.com>
* filter-source.c (filter_source_get_sources): Bonobo-conf-ified.
diff --git a/filter/rule-context.c b/filter/rule-context.c
index 69ca1cef0c..b89a3ffac7 100644
--- a/filter/rule-context.c
+++ b/filter/rule-context.c
@@ -427,6 +427,7 @@ rule_context_add_rule_gui(RuleContext * f, FilterRule * rule, const char *title,
gd = (GnomeDialog *) gnome_dialog_new(title, GNOME_STOCK_BUTTON_OK, GNOME_STOCK_BUTTON_CANCEL, NULL);
gtk_window_set_policy(GTK_WINDOW(gd), FALSE, TRUE, FALSE);
gtk_box_pack_start((GtkBox *) gd->vbox, w, TRUE, TRUE, 0);
+ gtk_window_set_default_size(GTK_WINDOW(gd), 600, 400);
gtk_widget_show((GtkWidget *) gd);
gtk_object_set_data_full((GtkObject *) gd, "rule", rule, (GtkDestroyNotify) gtk_object_unref);
if (path)