diff options
author | 2015-03-04 23:08:09 +0000 | |
---|---|---|
committer | 2015-03-04 23:08:09 +0000 | |
commit | 5512a84d3ef8167666a289e63efee372934d0bbc (patch) | |
tree | 35c1edb6db91a097b3ff86e6619a88ff65333cac /java/src/com/android/inputmethod/latin/LatinIME.java | |
parent | 34adcf999607d758ebcaf095afa2de8b48a7e581 (diff) | |
parent | 1ae16dc3db170802d1b38273f477125a2a969d32 (diff) | |
download | latinime-5512a84d3ef8167666a289e63efee372934d0bbc.tar.gz latinime-5512a84d3ef8167666a289e63efee372934d0bbc.tar.xz latinime-5512a84d3ef8167666a289e63efee372934d0bbc.zip |
am 1ae16dc3: Next-word suggestion bit in keyboard settings.
* commit '1ae16dc3db170802d1b38273f477125a2a969d32':
Next-word suggestion bit in keyboard settings.
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index 65a8d667e..d5bfe43b2 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -1543,11 +1543,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen // punctuation suggestions (if it's disabled). @Override public void setNeutralSuggestionStrip() { - final SettingsValues currentSettings = mSettings.getCurrent(); - final SuggestedWords neutralSuggestions = currentSettings.mBigramPredictionEnabled - ? SuggestedWords.getEmptyInstance() - : currentSettings.mSpacingAndPunctuations.mSuggestPuncList; - setSuggestedWords(neutralSuggestions); + setSuggestedWords(SuggestedWords.getEmptyInstance()); } // TODO: Make this private |