Final fix on Russian character doubling; remove redundant debugging

This commit is contained in:
artdeell 2020-12-31 19:39:45 +03:00
parent 882be4cbf8
commit a40eff3fb1
4 changed files with 19 additions and 10 deletions

View file

@ -60,9 +60,7 @@ class MinecraftInputConnection extends BaseInputConnection {
}
public boolean commitText(CharSequence text, int newCursorPosition) {
Log.d("EnhancedTextInput","Text committed: "+text);
parent.sendKeyPress(text.charAt(0
));
parent.sendKeyPress(text.charAt(0));
return true;
}