aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-vfolder-editor-rule.c
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2012-07-02 22:45:19 +0800
committerMilan Crha <mcrha@redhat.com>2012-07-02 22:45:19 +0800
commit90b80d173ff72c1d4a7a92dd2563b20866eb9ff1 (patch)
tree2a0f21e70a93e193803b4456710c8aed619b1169 /mail/em-vfolder-editor-rule.c
parent75bebad7f6d82e4a66695dcf77d46f91b973306c (diff)
downloadgsoc2013-evolution-90b80d173ff72c1d4a7a92dd2563b20866eb9ff1.tar
gsoc2013-evolution-90b80d173ff72c1d4a7a92dd2563b20866eb9ff1.tar.gz
gsoc2013-evolution-90b80d173ff72c1d4a7a92dd2563b20866eb9ff1.tar.bz2
gsoc2013-evolution-90b80d173ff72c1d4a7a92dd2563b20866eb9ff1.tar.lz
gsoc2013-evolution-90b80d173ff72c1d4a7a92dd2563b20866eb9ff1.tar.xz
gsoc2013-evolution-90b80d173ff72c1d4a7a92dd2563b20866eb9ff1.tar.zst
gsoc2013-evolution-90b80d173ff72c1d4a7a92dd2563b20866eb9ff1.zip
Bug #661886 - Avoid vertical scrolling in the filtering rules editor
Diffstat (limited to 'mail/em-vfolder-editor-rule.c')
-rw-r--r--mail/em-vfolder-editor-rule.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/mail/em-vfolder-editor-rule.c b/mail/em-vfolder-editor-rule.c
index dad5059228..32e6310bab 100644
--- a/mail/em-vfolder-editor-rule.c
+++ b/mail/em-vfolder-editor-rule.c
@@ -550,7 +550,9 @@ get_widget (EFilterRule *fr,
set_sensitive (data);
- gtk_box_pack_start (GTK_BOX (widget), frame, TRUE, TRUE, 3);
+ gtk_widget_set_valign (frame, GTK_ALIGN_FILL);
+ gtk_widget_set_vexpand (frame, TRUE);
+ gtk_container_add (GTK_CONTAINER (widget), frame);
g_object_unref (builder);