diff options
author | Radek Doulik <rodo@src.gnome.org> | 2001-06-19 22:23:15 +0800 |
---|---|---|
committer | Radek Doulik <rodo@src.gnome.org> | 2001-06-19 22:23:15 +0800 |
commit | 7364da6315454cfb44dda33e489857cd135477a3 (patch) | |
tree | 3eb0357c80720f5edd4a3fce5abff9b2b7f24578 | |
parent | ea61a8125616e548a13f64bfef1a3fc92c26e7f8 (diff) | |
download | gsoc2013-evolution-7364da6315454cfb44dda33e489857cd135477a3.tar gsoc2013-evolution-7364da6315454cfb44dda33e489857cd135477a3.tar.gz gsoc2013-evolution-7364da6315454cfb44dda33e489857cd135477a3.tar.bz2 gsoc2013-evolution-7364da6315454cfb44dda33e489857cd135477a3.tar.lz gsoc2013-evolution-7364da6315454cfb44dda33e489857cd135477a3.tar.xz gsoc2013-evolution-7364da6315454cfb44dda33e489857cd135477a3.tar.zst gsoc2013-evolution-7364da6315454cfb44dda33e489857cd135477a3.zip |
(write_field_row_begin): hmm, use just bold as it looks
better
svn path=/trunk/; revision=10288
-rw-r--r-- | mail/ChangeLog | 2 | ||||
-rw-r--r-- | mail/mail-format.c | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index b8a54c6002..d3071900bc 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -2,6 +2,8 @@ * mail-format.c (write_field_row_begin): add column with between header name and value + (write_field_row_begin): hmm, use just bold as it looks + better 2001-06-18 Jeffrey Stedfast <fejj@ximian.com> diff --git a/mail/mail-format.c b/mail/mail-format.c index 72ebbadab2..dceee68a37 100644 --- a/mail/mail-format.c +++ b/mail/mail-format.c @@ -630,7 +630,9 @@ write_field_row_begin (const char *name, gint flags, GtkHTML *html, GtkHTMLStrea bold ? "<b>" : "", encoded_name, bold ? "</b>" : ""); } else { - mail_html_write (html, stream, "<tr><%s align=\"right\" valign=\"top\">%s:</%s><td> </td><td>", + mail_html_write (html, stream, + "<tr><%s align=\"right\" valign=\"top\">%s:" + "<b> </%s><td>", bold ? "th" : "td", encoded_name, bold ? "th" : "td"); } |