mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-27 11:25:13 +01:00
Fixed pasting plain signature HTML
This commit is contained in:
@@ -86,7 +86,10 @@ public class EditTextCompose extends FixedEditText {
|
||||
CharSequence text = item.getText();
|
||||
if (text == null)
|
||||
return false;
|
||||
html = "<div>" + HtmlHelper.formatPre(text.toString(), false) + "</div>";
|
||||
if (raw)
|
||||
html = text.toString();
|
||||
else
|
||||
html = "<div>" + HtmlHelper.formatPre(text.toString(), false) + "</div>";
|
||||
}
|
||||
|
||||
SpannableStringBuilder ssb;
|
||||
|
||||
Reference in New Issue
Block a user