diff options
author | Dan Vrátil <dvratil@redhat.com> | 2012-08-03 21:53:27 +0800 |
---|---|---|
committer | Dan Vrátil <dvratil@redhat.com> | 2012-08-03 21:54:55 +0800 |
commit | 3ed728c12cde9010f2640b0d8d616dcfc74548bb (patch) | |
tree | a9e5d91e2c5f29632d12239dd235df6c92e9b20d /em-format | |
parent | 6dd78a31ded543394f9375695f075ecaa15bfb70 (diff) | |
download | gsoc2013-evolution-3ed728c12cde9010f2640b0d8d616dcfc74548bb.tar.gz gsoc2013-evolution-3ed728c12cde9010f2640b0d8d616dcfc74548bb.tar.zst gsoc2013-evolution-3ed728c12cde9010f2640b0d8d616dcfc74548bb.zip |
Bug #679726 - Move button for expanding headers behind header label
Diffstat (limited to 'em-format')
-rw-r--r-- | em-format/e-mail-formatter-utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/em-format/e-mail-formatter-utils.c b/em-format/e-mail-formatter-utils.c index 252f8e4576..db97ee65f8 100644 --- a/em-format/e-mail-formatter-utils.c +++ b/em-format/e-mail-formatter-utils.c @@ -294,7 +294,7 @@ e_mail_formatter_format_header (EMailFormatter *formatter, !(flags & E_MAIL_FORMATTER_HEADER_FLAG_NOELIPSIZE)); if (img) { - str_field = g_strdup_printf ("%s%s:", img, label); + str_field = g_strdup_printf ("%s: %s", label, img); label = str_field; flags |= E_MAIL_FORMATTER_HEADER_FLAG_NODEC; g_free (img); |