1
0
Fork 0

fixed changing the text case not working in ABC mode

This commit is contained in:
sspanak 2024-09-09 11:16:31 +03:00 committed by Dimo Karaivanov
parent b158ae3a32
commit c689284af5

View file

@ -160,7 +160,7 @@ abstract public class CommandHandler extends TextEditingHandler {
String firstSuggestionAfter = mInputMode.getSuggestions().get(0);
// this is a word and the text case has finally changed
if (!firstSuggestionAfter.equalsIgnoreCase(suggestionOps.get(0))) {
if (!firstSuggestionAfter.equals(suggestionOps.get(0))) {
break;
}
}