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
This commit is contained in:
Anna Dirks
2001-07-09 16:28:54 +00:00
parent fcda5ec759
commit 3adc63f509
2 changed files with 6 additions and 0 deletions

View File

@ -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.

View File

@ -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)