aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-format-html.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2005-01-31 15:28:03 +0800
committerMichael Zucci <zucchi@src.gnome.org>2005-01-31 15:28:03 +0800
commit1826519a5dd620ad1424e401a25b734082afee66 (patch)
tree9f2995ceaaa7dead13902ca34155be16db97fbb4 /mail/em-format-html.c
parentdb1be26423ddb547fd29ce5d3de7ffa61fd3314f (diff)
downloadgsoc2013-evolution-1826519a5dd620ad1424e401a25b734082afee66.tar
gsoc2013-evolution-1826519a5dd620ad1424e401a25b734082afee66.tar.gz
gsoc2013-evolution-1826519a5dd620ad1424e401a25b734082afee66.tar.bz2
gsoc2013-evolution-1826519a5dd620ad1424e401a25b734082afee66.tar.lz
gsoc2013-evolution-1826519a5dd620ad1424e401a25b734082afee66.tar.xz
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/em-format-html.c')
-rw-r--r--mail/em-format-html.c4
1 files changed, 2 insertions, 2 deletions
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>&nbsp;</b></th><td>%s</td></tr>";
+ fmt = "<tr><th align=\"right\" valign=\"top\" nowrap>%s:<b>&nbsp;</b></th><td>%s</td></tr>";
else
- fmt = "<tr><td align=\"right\" valign=\"top\">%s:<b>&nbsp;</b></td><td>%s</td></tr>";
+ fmt = "<tr><td align=\"right\" valign=\"top\" nowrap>%s:<b>&nbsp;</b></td><td>%s</td></tr>";
}
}