aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/LatinIME.java
diff options
context:
space:
mode:
authorsatok <satok@google.com>2011-01-20 22:22:13 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-01-20 22:22:13 -0800
commit15a7e837ab619df1e3844cd59b337c6ac56a0daf (patch)
tree3400ffc10859d617ddee4fecbe876ddfbb2e10b9 /java/src/com/android/inputmethod/latin/LatinIME.java
parent6e7dcd755eb4292b0b92cbba8237174b6317da05 (diff)
parent6f7218627eda110a8454053f8ecb7b80edfdc8ce (diff)
downloadlatinime-15a7e837ab619df1e3844cd59b337c6ac56a0daf.tar.gz
latinime-15a7e837ab619df1e3844cd59b337c6ac56a0daf.tar.xz
latinime-15a7e837ab619df1e3844cd59b337c6ac56a0daf.zip
Merge "Dim previously suggested words" into honeycomb
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 9a939bea8..053bf6c1a 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -1519,7 +1519,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
mKeyboardSwitcher.setPreferredLetters(nextLettersFrequencies);
boolean correctionAvailable = !mInputTypeNoAutoCorrect && !mJustReverted
- && mSuggest.hasMinimalCorrection();
+ && mSuggest.hasAutoCorrection();
final CharSequence typedWord = word.getTypedWord();
// If we're in basic correct
final boolean typedWordValid = mSuggest.isValidWord(typedWord) ||