mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Default puctuation suggestions have same color
Bug: 3000978 Change-Id: Iedb3d4619ada8bd3ccc301ca2a8fb16fba6580c0
This commit is contained in:
parent
809bef520b
commit
1476988ebb
@ -247,7 +247,9 @@ public class CandidateView extends View {
|
||||
paint.setTypeface(Typeface.DEFAULT_BOLD);
|
||||
paint.setColor(mColorRecommended);
|
||||
existsAutoCompletion = true;
|
||||
} else if (i != 0) {
|
||||
} else if (i != 0 || (suggestion.length() == 1 && count > 1)) {
|
||||
// HACK: even if i == 0, we use mColorOther when this suggestion's length is 1 and
|
||||
// there are multiple suggestions, such as the default punctuation list.
|
||||
paint.setColor(mColorOther);
|
||||
}
|
||||
final int wordWidth;
|
||||
|
Loading…
Reference in New Issue
Block a user