fixed changing the text case not working in ABC mode
This commit is contained in:
parent
b158ae3a32
commit
c689284af5
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue