diff options
author | 2012-05-08 23:38:53 -0700 | |
---|---|---|
committer | 2012-05-08 23:38:53 -0700 | |
commit | 442ac5d0bb96ec257d26b28df2fabefdefe59b96 (patch) | |
tree | 9d1110ad371c4fbf70869e7e2658f23ed9ccdd06 /java/src | |
parent | 34b2b5e694758390126ffa3b1c7d752cdde7a05c (diff) | |
parent | 736b109e1692374f5a2739885c8f931dbb8be1f2 (diff) | |
download | latinime-442ac5d0bb96ec257d26b28df2fabefdefe59b96.tar.gz latinime-442ac5d0bb96ec257d26b28df2fabefdefe59b96.tar.xz latinime-442ac5d0bb96ec257d26b28df2fabefdefe59b96.zip |
Merge "Don't ask for surrounding characters for each keypress" into jb-dev
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index 796d4ac79..b4be7e696 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -1480,20 +1480,18 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen if ((isAlphabet(primaryCode) || mSettingsValues.isSymbolExcludedFromWordSeparators(primaryCode)) - && isSuggestionsRequested() && !isCursorTouchingWord()) { - if (!isComposingWord) { - // Reset entirely the composing state anyway, then start composing a new word unless - // the character is a single quote. The idea here is, single quote is not a - // separator and it should be treated as a normal character, except in the first - // position where it should not start composing a word. - isComposingWord = (Keyboard.CODE_SINGLE_QUOTE != primaryCode); - // Here we don't need to reset the last composed word. It will be reset - // when we commit this one, if we ever do; if on the other hand we backspace - // it entirely and resume suggestions on the previous word, we'd like to still - // have touch coordinates for it. - resetComposingState(false /* alsoResetLastComposedWord */); - clearSuggestions(); - } + && isSuggestionsRequested() && !isComposingWord && !isCursorTouchingWord()) { + // Reset entirely the composing state anyway, then start composing a new word unless + // the character is a single quote. The idea here is, single quote is not a + // separator and it should be treated as a normal character, except in the first + // position where it should not start composing a word. + isComposingWord = (Keyboard.CODE_SINGLE_QUOTE != primaryCode); + // Here we don't need to reset the last composed word. It will be reset + // when we commit this one, if we ever do; if on the other hand we backspace + // it entirely and resume suggestions on the previous word, we'd like to still + // have touch coordinates for it. + resetComposingState(false /* alsoResetLastComposedWord */); + clearSuggestions(); } if (isComposingWord) { mWordComposer.add( |