mirror of https://github.com/M66B/FairEmail.git
Small layout improvement
This commit is contained in:
parent
9c26c9da95
commit
729263d0a3
|
@ -3930,7 +3930,10 @@ public class MessageHelper {
|
||||||
result = HtmlHelper.formatPlainText(Log.formatThrowable(ex));
|
result = HtmlHelper.formatPlainText(Log.formatThrowable(ex));
|
||||||
}
|
}
|
||||||
} else if (h.isPatch()) {
|
} else if (h.isPatch()) {
|
||||||
result = "<pre style=\"font-family: monospace; font-size:small;\">" + HtmlHelper.formatPlainText(result) + "</pre>";
|
result = "<hr>" +
|
||||||
|
"<pre style=\"font-family: monospace; font-size:small;\">" +
|
||||||
|
HtmlHelper.formatPlainText(result) +
|
||||||
|
"</pre>";
|
||||||
} else if (h.isReport()) {
|
} else if (h.isReport()) {
|
||||||
Report report = new Report(h.contentType.getBaseType(), result);
|
Report report = new Report(h.contentType.getBaseType(), result);
|
||||||
result = report.html;
|
result = report.html;
|
||||||
|
|
Loading…
Reference in New Issue