diff options
author | 2014-01-27 03:18:40 -0800 | |
---|---|---|
committer | 2014-01-27 03:18:40 -0800 | |
commit | 38f4272ade8a02fd4ba328cc9934accc89f0216a (patch) | |
tree | fddc5befa26c4a2318ae517e9f9a854e8d074065 | |
parent | ddfce8b7c41f13a722b0c31b3e3abce42ccb918b (diff) | |
parent | 521a83a3f122d02d24317540fd7bafb1918acb08 (diff) | |
download | latinime-38f4272ade8a02fd4ba328cc9934accc89f0216a.tar.gz latinime-38f4272ade8a02fd4ba328cc9934accc89f0216a.tar.xz latinime-38f4272ade8a02fd4ba328cc9934accc89f0216a.zip |
am 521a83a3: Merge "[IL86] Simplification and correctness fix."
* commit '521a83a3f122d02d24317540fd7bafb1918acb08':
[IL86] Simplification and correctness fix.
-rw-r--r-- | java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java b/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java index 0554cadfc..43d75330d 100644 --- a/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java +++ b/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java @@ -1460,11 +1460,7 @@ public final class InputLogic { final int newSelStart, final int newSelEnd) { final boolean shouldFinishComposition = mWordComposer.isComposingWord(); resetComposingState(true /* alsoResetLastComposedWord */); - if (settingsValues.mBigramPredictionEnabled) { - mLatinIME.clearSuggestionStrip(); - } else { - mLatinIME.setSuggestedWords(settingsValues.mSpacingAndPunctuations.mSuggestPuncList); - } + mLatinIME.setNeutralSuggestionStrip(); mConnection.resetCachesUponCursorMoveAndReturnSuccess(newSelStart, newSelEnd, shouldFinishComposition); } |