mirror of https://github.com/M66B/FairEmail.git
Fixed text color of broken quotes
This commit is contained in:
parent
2e41a4e39d
commit
72886db53e
|
@ -527,7 +527,8 @@ public class FragmentCompose extends FragmentBase {
|
|||
}
|
||||
|
||||
int color = Helper.resolveColor(getContext(), android.R.attr.textColorPrimary);
|
||||
ssb.setSpan(new ForegroundColorSpan(color), start, start, Spanned.SPAN_INCLUSIVE_INCLUSIVE);
|
||||
int flags = (Spanned.SPAN_INCLUSIVE_INCLUSIVE | Spanned.SPAN_COMPOSING);
|
||||
ssb.setSpan(new ForegroundColorSpan(color), start, start, flags);
|
||||
|
||||
etBody.setText(ssb);
|
||||
etBody.setSelection(start);
|
||||
|
|
Loading…
Reference in New Issue