Remove hr from msg display.

This commit is contained in:
Martin Rotter 2016-04-28 06:24:50 +02:00
parent 242a332b51
commit ca458ee5c0
1 changed files with 1 additions and 1 deletions

View File

@ -218,7 +218,7 @@ QString MessagePreviewer::prepareHtmlForMessage(const Message &message) {
html += QString("[%2] <a href=\"%1\">%1</a><br/>").arg(imgTagRegex.cap(1), tr("image")); html += QString("[%2] <a href=\"%1\">%1</a><br/>").arg(imgTagRegex.cap(1), tr("image"));
} }
html += "<hr/>"; html += "<br/>";
html += message.m_contents; html += message.m_contents;
return html; return html;