mirror of https://github.com/M66B/FairEmail.git
Fixed spaces
This commit is contained in:
parent
13d9eb6e4f
commit
a47d71d062
|
@ -183,7 +183,7 @@ public class FragmentCompose extends FragmentEx {
|
|||
|
||||
String signature = (identity == null ? null : identity.signature);
|
||||
if (TextUtils.isEmpty(signature))
|
||||
signature = " ";
|
||||
signature = "‌";
|
||||
|
||||
String html = Html.toHtml(etBody.getText());
|
||||
int cstart = html.indexOf("<tt>");
|
||||
|
@ -1142,7 +1142,7 @@ public class FragmentCompose extends FragmentEx {
|
|||
body = body.replaceAll("\\r?\\n", "<br />");
|
||||
|
||||
if (pro)
|
||||
body += "<br /><p><tt> </tt></p>";
|
||||
body += "<p>‌</p><p><tt>‌</tt></p>";
|
||||
} else {
|
||||
result.draft.thread = ref.thread;
|
||||
|
||||
|
@ -1191,7 +1191,7 @@ public class FragmentCompose extends FragmentEx {
|
|||
}
|
||||
|
||||
if (pro)
|
||||
body = "<p><tt> </tt></p>" + body;
|
||||
body = "<p><tt>‌</tt></p>" + body;
|
||||
|
||||
if (answer > 0 && ("reply".equals(action) || "reply_all".equals(action))) {
|
||||
String text = db.answer().getAnswer(answer).text;
|
||||
|
@ -1207,7 +1207,7 @@ public class FragmentCompose extends FragmentEx {
|
|||
|
||||
body = text + body;
|
||||
} else
|
||||
body = "<br />" + body;
|
||||
body = "<p>‌</p>" + body;
|
||||
}
|
||||
|
||||
result.draft.content = true;
|
||||
|
|
Loading…
Reference in New Issue