diff options
author | Not Zed <NotZed@Ximian.com> | 2005-01-31 15:28:03 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2005-01-31 15:28:03 +0800 |
commit | 1826519a5dd620ad1424e401a25b734082afee66 (patch) | |
tree | 9f2995ceaaa7dead13902ca34155be16db97fbb4 /mail | |
parent | db1be26423ddb547fd29ce5d3de7ffa61fd3314f (diff) | |
download | gsoc2013-evolution-1826519a5dd620ad1424e401a25b734082afee66.tar.gz gsoc2013-evolution-1826519a5dd620ad1424e401a25b734082afee66.tar.zst gsoc2013-evolution-1826519a5dd620ad1424e401a25b734082afee66.zip |
** See bug #67083
2005-01-31 Not Zed <NotZed@Ximian.com>
** See bug #67083
* em-format-html.c (efh_format_text_header): no-wrap the header line.
svn path=/trunk/; revision=28623
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 4 | ||||
-rw-r--r-- | mail/em-format-html.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 56b3d6446e..b66b25902f 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,9 @@ 2005-01-31 Not Zed <NotZed@Ximian.com> + ** See bug #67083 + + * em-format-html.c (efh_format_text_header): no-wrap the header line. + ** See bug #69850 * mail-autofilter.c (rule_from_message): dont crash if we're diff --git a/mail/em-format-html.c b/mail/em-format-html.c index 36d6b6a9af..6a473eb0df 100644 --- a/mail/em-format-html.c +++ b/mail/em-format-html.c @@ -1401,9 +1401,9 @@ efh_format_text_header (EMFormatHTML *emfh, CamelStream *stream, const char *lab fmt = "<tr><td>%s: %s</td></tr>"; } else { if (flags & EM_FORMAT_HEADER_BOLD) - fmt = "<tr><th align=\"right\" valign=\"top\">%s:<b> </b></th><td>%s</td></tr>"; + fmt = "<tr><th align=\"right\" valign=\"top\" nowrap>%s:<b> </b></th><td>%s</td></tr>"; else - fmt = "<tr><td align=\"right\" valign=\"top\">%s:<b> </b></td><td>%s</td></tr>"; + fmt = "<tr><td align=\"right\" valign=\"top\" nowrap>%s:<b> </b></td><td>%s</td></tr>"; } } |