diff options
author | 2014-09-08 13:20:27 +0000 | |
---|---|---|
committer | 2014-09-08 13:20:27 +0000 | |
commit | 1cf2acd8de53e1b6fa156af065330c687ccdcb86 (patch) | |
tree | 878e551ebf2c249e85b2dcfed12f84ea3cc2ac78 /java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java | |
parent | b41ee671944aee97163c1567d7407fc3bd7507a3 (diff) | |
parent | 61e7afa6fa98939f9dcb9f7a2ebb5678a51d4201 (diff) | |
download | latinime-1cf2acd8de53e1b6fa156af065330c687ccdcb86.tar.gz latinime-1cf2acd8de53e1b6fa156af065330c687ccdcb86.tar.xz latinime-1cf2acd8de53e1b6fa156af065330c687ccdcb86.zip |
am 61e7afa6: am 0eaa25e0: am 914078fd: Fix a bug where recorrection would stop on connectors
* commit '61e7afa6fa98939f9dcb9f7a2ebb5678a51d4201':
Fix a bug where recorrection would stop on connectors
Diffstat (limited to 'java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java b/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java index 74b7c81f3..26acabdaf 100644 --- a/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java +++ b/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java @@ -1484,8 +1484,7 @@ public final class InputLogic { return; } final TextRange range = mConnection.getWordRangeAtCursor( - settingsValues.mSpacingAndPunctuations.mSortedWordSeparators, - currentKeyboardScriptId); + settingsValues.mSpacingAndPunctuations, currentKeyboardScriptId); if (null == range) return; // Happens if we don't have an input connection at all if (range.length() <= 0) { // Race condition, or touching a word in a non-supported script. |