Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 53af4ae6 authored by satok's avatar satok
Browse files

Set SuggestionSpan with FLAG_AUTO_CORRECTION as a composing span

Bug: 5460262
Change-Id: Ibeb875bb885fb663ed23f0299d671e995a66b642
parent ef0a7b75
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -69,7 +69,8 @@ public class SuggestionSpanUtils {
            Log.w(TAG, "Suggestion span was not created.");
            return text;
        }
        spannable.setSpan(ss, 0, text.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
        spannable.setSpan(ss, 0, text.length(),
                Spanned.SPAN_EXCLUSIVE_EXCLUSIVE | Spanned.SPAN_COMPOSING);
        return spannable;
    }