fixed combining diacritics not available as suggestions when filtering is on
This commit is contained in:
parent
f4d031698f
commit
04231b7707
1 changed files with 1 additions and 1 deletions
|
|
@ -148,7 +148,7 @@ public class WordPredictions extends Predictions {
|
|||
// append all letters for the last digit in the sequence (the last pressed key)
|
||||
int lastSequenceDigit = digitSequence.charAt(digitSequence.length() - 1) - '0';
|
||||
for (String keyLetter : settings.getOrderedKeyChars(language, lastSequenceDigit)) {
|
||||
if (Character.isAlphabetic(keyLetter.charAt(0)) || Characters.isCombiningPunctuation(language, keyLetter.charAt(0))) {
|
||||
if (Character.isAlphabetic(keyLetter.charAt(0)) || Characters.isCombiningPunctuation(language, keyLetter.charAt(0)) || TextTools.isCombining(keyLetter)) {
|
||||
generatedWords.add(baseWord + keyLetter);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue