diff options
author | 2012-01-17 10:28:05 +0900 | |
---|---|---|
committer | 2012-01-17 10:29:11 +0900 | |
commit | 72d285f4d758dd1ceafb7d9bd3dd330efd24c1f8 (patch) | |
tree | 8d13e2e0f21687d87500ba30a50fe502f8793727 /java/src/com/android/inputmethod | |
parent | 16025407647022db0f1f20bb108d774944d1a978 (diff) | |
download | latinime-72d285f4d758dd1ceafb7d9bd3dd330efd24c1f8.tar.gz latinime-72d285f4d758dd1ceafb7d9bd3dd330efd24c1f8.tar.xz latinime-72d285f4d758dd1ceafb7d9bd3dd330efd24c1f8.zip |
Add some comments about resuming auto-suggestion
Bug: 5846646
Change-Id: Ib2c76ec173972eb7acadbfaae7e930849d546721
Diffstat (limited to 'java/src/com/android/inputmethod')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index e60f55060..2f5f2a5dd 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -1372,6 +1372,10 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar ic.deleteSurroundingText(1, 0); } } else { + // We should be very careful about auto-correction cancellation and suggestion + // resuming here. The behavior needs to be different according to text field types, + // and it would be much clearer to test for them explicitly here rather than + // relying on implicit values like "whether the suggestion strip is displayed". if (mWordComposer.didAutoCorrectToAnotherWord()) { Utils.Stats.onAutoCorrectionCancellation(); cancelAutoCorrect(ic); @@ -1391,6 +1395,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar } } + // See the comment above: must be careful about resuming auto-suggestion. if (mSuggestionsView != null && mSuggestionsView.dismissAddToDictionaryHint()) { // Go back to the suggestion mode if the user canceled the // "Touch again to save". |