diff options
author | Denis Washington <denisw@svn.gnome.org> | 2007-12-04 02:50:40 +0800 |
---|---|---|
committer | Denis Washington <denisw@src.gnome.org> | 2007-12-04 02:50:40 +0800 |
commit | 2382c13eb142708eabc7d086048fec40cfce092b (patch) | |
tree | dc9b4664191952875a345f500fa1e690ff02cff1 /mail/mail-send-recv.c | |
parent | cf649a8408918e3cd5a185dabaa7b9ba497ad250 (diff) | |
download | gsoc2013-evolution-2382c13eb142708eabc7d086048fec40cfce092b.tar.gz gsoc2013-evolution-2382c13eb142708eabc7d086048fec40cfce092b.tar.zst gsoc2013-evolution-2382c13eb142708eabc7d086048fec40cfce092b.zip |
** Fix for bug #363644
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.
svn path=/trunk/; revision=34630
Diffstat (limited to 'mail/mail-send-recv.c')
-rw-r--r-- | mail/mail-send-recv.c | 2 |
1 files changed, 2 insertions, 0 deletions
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); |