aboutsummaryrefslogtreecommitdiffstats
path: root/filter/filter-part.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-10-24 02:35:28 +0800
committerChris Lahey <clahey@src.gnome.org>2000-10-24 02:35:28 +0800
commit27f51ae4e98b5c13dccc67d434028fb147f314d3 (patch)
treedce71abdcc06d1f307283080906b56b76eb9c109 /filter/filter-part.c
parent61008a12e175494276ed24de4b3d214f66041cd1 (diff)
downloadgsoc2013-evolution-27f51ae4e98b5c13dccc67d434028fb147f314d3.tar
gsoc2013-evolution-27f51ae4e98b5c13dccc67d434028fb147f314d3.tar.gz
gsoc2013-evolution-27f51ae4e98b5c13dccc67d434028fb147f314d3.tar.bz2
gsoc2013-evolution-27f51ae4e98b5c13dccc67d434028fb147f314d3.tar.lz
gsoc2013-evolution-27f51ae4e98b5c13dccc67d434028fb147f314d3.tar.xz
gsoc2013-evolution-27f51ae4e98b5c13dccc67d434028fb147f314d3.tar.zst
gsoc2013-evolution-27f51ae4e98b5c13dccc67d434028fb147f314d3.zip
Fixed these widgets to resize properly.
2000-10-23 Christopher James Lahey <clahey@helixcode.com> * 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
Diffstat (limited to 'filter/filter-part.c')
-rw-r--r--filter/filter-part.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/filter/filter-part.c b/filter/filter-part.c
index 31394b63fd..5f478d3888 100644
--- a/filter/filter-part.c
+++ b/filter/filter-part.c
@@ -418,7 +418,8 @@ int main(int argc, char **argv)
w = filter_part_get_widget(ff);
gd = (GnomeDialog *)gnome_dialog_new(_("Test"), GNOME_STOCK_BUTTON_OK, 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);
gnome_dialog_run_and_close(gd);