aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
Diffstat (limited to 'mail')
-rw-r--r--mail/ChangeLog8
-rw-r--r--mail/mail-send-recv.c2
2 files changed, 10 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 7165f155fd..24cd8c2cdc 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,11 @@
+2007-12-03 Denis Washington <denisw@svn.gnome.org>
+
+ ** Fix for bug #363644
+
+ * mail-send-recv.c:
+ Added a 6px padding around the scrolled window so that
+ it's border doesn't look like a separator on the bottom.
+
2007-11-29 Milan Crha <mcrha@redhat.com>
** Part of fix for bug #271551
diff --git a/mail/mail-send-recv.c b/mail/mail-send-recv.c
index 136f9e9051..6ffc823761 100644
--- a/mail/mail-send-recv.c
+++ b/mail/mail-send-recv.c
@@ -430,6 +430,8 @@ build_dialog (EAccountList *accounts, CamelFolder *outbox, const char *destinati
gtk_table_set_col_spacings (GTK_TABLE (table), 6);
scrolled_window = gtk_scrolled_window_new (NULL, NULL);
+ gtk_container_set_border_width (
+ GTK_CONTAINER (scrolled_window), 6);
gtk_scrolled_window_set_policy (
GTK_SCROLLED_WINDOW (scrolled_window),
GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);