diff options
author | 2012-06-29 02:09:16 -0700 | |
---|---|---|
committer | 2012-06-29 02:09:16 -0700 | |
commit | defc2e2efaf0ddf03f9ed3224d197851b101e1ac (patch) | |
tree | 2dc4a7d8c53b6634e4a7f9d210bd7bf9cb79bd69 /java/src | |
parent | 7a6ac44f5fcf8b1961ebf4c0c6e72409b2cdb455 (diff) | |
parent | 2cda148fd5aa047dca6dfd5d78db548a7a8e2bc0 (diff) | |
download | latinime-defc2e2efaf0ddf03f9ed3224d197851b101e1ac.tar.gz latinime-defc2e2efaf0ddf03f9ed3224d197851b101e1ac.tar.xz latinime-defc2e2efaf0ddf03f9ed3224d197851b101e1ac.zip |
Merge "Simplification (A31)"
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/latin/Suggest.java | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/java/src/com/android/inputmethod/latin/Suggest.java b/java/src/com/android/inputmethod/latin/Suggest.java index 24a10964e..0af08084f 100644 --- a/java/src/com/android/inputmethod/latin/Suggest.java +++ b/java/src/com/android/inputmethod/latin/Suggest.java @@ -227,7 +227,7 @@ public class Suggest { mWhiteListDictionary.getWhitelistedWord(consideredWord); final boolean hasAutoCorrection; - if (!isCorrectionEnabled) { + if (!isCorrectionEnabled || wordComposer.isMostlyCaps() || wordComposer.isResumed()) { hasAutoCorrection = false; } else if (null != whitelistedWord) { hasAutoCorrection = true; @@ -243,10 +243,6 @@ public class Suggest { } else { hasAutoCorrection = false; } - boolean autoCorrectionAvailable = hasAutoCorrection; - // Don't auto-correct words with multiple capital letter - autoCorrectionAvailable &= !wordComposer.isMostlyCaps(); - autoCorrectionAvailable &= !wordComposer.isResumed(); if (whitelistedWord != null) { suggestionsSet.add(new SuggestedWordInfo(whitelistedWord, @@ -305,7 +301,7 @@ public class Suggest { // actual word, it says typedWordValid = false, which looks wrong. We should either // rename the attribute or change the value. !isPrediction && !allowsToBeAutoCorrected /* typedWordValid */, - !isPrediction && autoCorrectionAvailable /* hasAutoCorrectionCandidate */, + !isPrediction && hasAutoCorrection, /* hasAutoCorrectionCandidate */ false /* isPunctuationSuggestions */, false /* isObsoleteSuggestions */, isPrediction); |