From 27f51ae4e98b5c13dccc67d434028fb147f314d3 Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Mon, 23 Oct 2000 18:35:28 +0000 Subject: Fixed these widgets to resize properly. 2000-10-23 Christopher James Lahey * filter-editor.c, filter-filter.c, filter-folder.c, filter-part.c, filter-rule.c, rule-context.c, score-editor.c, vfolder-editor.c: Fixed these widgets to resize properly. svn path=/trunk/; revision=6117 --- filter/rule-context.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'filter/rule-context.c') diff --git a/filter/rule-context.c b/filter/rule-context.c index 399d5787ef..7bb0b8fb65 100644 --- a/filter/rule-context.c +++ b/filter/rule-context.c @@ -388,7 +388,8 @@ rule_context_add_rule_gui(RuleContext * f, FilterRule * rule, const char *title, w = filter_rule_get_widget(rule, f); gd = (GnomeDialog *) gnome_dialog_new(title, GNOME_STOCK_BUTTON_OK, GNOME_STOCK_BUTTON_CANCEL, NULL); - gtk_box_pack_start((GtkBox *) gd->vbox, w, FALSE, TRUE, 0); + gtk_window_set_policy(GTK_WINDOW(gd), FALSE, TRUE, FALSE); + gtk_box_pack_start((GtkBox *) gd->vbox, w, TRUE, TRUE, 0); gtk_widget_show((GtkWidget *) gd); gtk_object_set_data_full((GtkObject *) gd, "rule", rule, (GtkDestroyNotify) gtk_object_unref); if (path) -- cgit v1.2.3