aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/LatinIME.java
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2014-08-26 12:25:59 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-08-26 12:25:59 +0000
commit2a2d324eb627807a9d09b491fbb4ac78ffb253fc (patch)
treeff2659369eb2c6e7d4a0400fcdb3cf10b40c518d /java/src/com/android/inputmethod/latin/LatinIME.java
parentabf05cc0da1ead7e270a7c99bf9f000dabf91f5b (diff)
parent8380f921f7edaeea2033a1e967a14941400fe246 (diff)
downloadlatinime-2a2d324eb627807a9d09b491fbb4ac78ffb253fc.tar.gz
latinime-2a2d324eb627807a9d09b491fbb4ac78ffb253fc.tar.xz
latinime-2a2d324eb627807a9d09b491fbb4ac78ffb253fc.zip
am 8380f921: Fix a bug where the top prediction would disappear.
* commit '8380f921f7edaeea2033a1e967a14941400fe246': Fix a bug where the top prediction would disappear.
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r--java/src/com/android/inputmethod/latin/LatinIME.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java
index 6045b3428..aebc7101a 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -1051,7 +1051,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
applicationSpecifiedCompletions);
final SuggestedWords suggestedWords = new SuggestedWords(applicationSuggestedWords,
null /* rawSuggestions */, false /* typedWordValid */, false /* willAutoCorrect */,
- false /* isObsoleteSuggestions */, false /* isPrediction */,
+ false /* isObsoleteSuggestions */,
SuggestedWords.INPUT_STYLE_APPLICATION_SPECIFIED /* inputStyle */);
// When in fullscreen mode, show completions generated by the application forcibly
setSuggestedWords(suggestedWords);