aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2014-01-27 03:18:40 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2014-01-27 03:18:40 -0800
commit38f4272ade8a02fd4ba328cc9934accc89f0216a (patch)
treefddc5befa26c4a2318ae517e9f9a854e8d074065
parentddfce8b7c41f13a722b0c31b3e3abce42ccb918b (diff)
parent521a83a3f122d02d24317540fd7bafb1918acb08 (diff)
downloadlatinime-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.java6
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);
}