diff options
author | Rodney Dawes <dobey@ximian.com> | 2004-03-30 06:25:15 +0800 |
---|---|---|
committer | Rodney Dawes <dobey@src.gnome.org> | 2004-03-30 06:25:15 +0800 |
commit | 3d6efc8617bc5662e2524fe3e1d464e52e8d43c8 (patch) | |
tree | 779b21b8f4c6490204151991d0a0da683f299f34 /filter | |
parent | 7b52cce57f0fdcf493d2980948eaf5440c1b2a39 (diff) | |
download | gsoc2013-evolution-3d6efc8617bc5662e2524fe3e1d464e52e8d43c8.tar.gz gsoc2013-evolution-3d6efc8617bc5662e2524fe3e1d464e52e8d43c8.tar.zst gsoc2013-evolution-3d6efc8617bc5662e2524fe3e1d464e52e8d43c8.zip |
Fix packing of the hbox that contains the actual input widgets to expand
2004-03-29 Rodney Dawes <dobey@ximian.com>
* filter-filter.c (get_widget):
* filter-rule.c (get_widget): Fix packing of the hbox that contains
the actual input widgets to expand and fill
svn path=/trunk/; revision=25235
Diffstat (limited to 'filter')
-rw-r--r-- | filter/ChangeLog | 6 | ||||
-rw-r--r-- | filter/filter-filter.c | 2 | ||||
-rw-r--r-- | filter/filter-rule.c | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/filter/ChangeLog b/filter/ChangeLog index 9a4485315e..cf2c93f341 100644 --- a/filter/ChangeLog +++ b/filter/ChangeLog @@ -1,3 +1,9 @@ +2004-03-29 Rodney Dawes <dobey@ximian.com> + + * filter-filter.c (get_widget): + * filter-rule.c (get_widget): Fix packing of the hbox that contains + the actual input widgets to expand and fill + 2004-03-26 Not Zed <NotZed@Ximian.com> * filter-option.c (filter_option_add): return the added option. diff --git a/filter/filter-filter.c b/filter/filter-filter.c index 0aa5920b98..6dc53d9593 100644 --- a/filter/filter-filter.c +++ b/filter/filter-filter.c @@ -495,7 +495,7 @@ get_widget (FilterRule *fr, RuleContext *rc) gtk_widget_show (label); hbox = gtk_hbox_new (FALSE, 12); - gtk_box_pack_start (GTK_BOX (widget), hbox, FALSE, FALSE, 0); + gtk_box_pack_start (GTK_BOX (widget), hbox, TRUE, TRUE, 0); gtk_widget_show (hbox); label = gtk_label_new (""); diff --git a/filter/filter-rule.c b/filter/filter-rule.c index f8b36564c5..bd5f0f26d6 100644 --- a/filter/filter-rule.c +++ b/filter/filter-rule.c @@ -783,7 +783,7 @@ get_widget (FilterRule *fr, struct _RuleContext *f) gtk_widget_show (label); hbox = gtk_hbox_new (FALSE, 12); - gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 0); + gtk_box_pack_start (GTK_BOX (vbox), hbox, TRUE, TRUE, 0); gtk_widget_show (hbox); label = gtk_label_new (""); |