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 | |
parent | cf649a8408918e3cd5a185dabaa7b9ba497ad250 (diff) | |
download | gsoc2013-evolution-2382c13eb142708eabc7d086048fec40cfce092b.tar gsoc2013-evolution-2382c13eb142708eabc7d086048fec40cfce092b.tar.gz gsoc2013-evolution-2382c13eb142708eabc7d086048fec40cfce092b.tar.bz2 gsoc2013-evolution-2382c13eb142708eabc7d086048fec40cfce092b.tar.lz gsoc2013-evolution-2382c13eb142708eabc7d086048fec40cfce092b.tar.xz 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
-rw-r--r-- | mail/ChangeLog | 8 | ||||
-rw-r--r-- | mail/mail-send-recv.c | 2 |
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); |