aboutsummaryrefslogtreecommitdiffstats
path: root/java/src
diff options
context:
space:
mode:
authorYohei Yukawa <yukawa@google.com>2014-08-25 04:25:01 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-08-25 04:25:01 +0000
commit02716083158c3affbcfc719ff6471112d7397578 (patch)
tree72bc0cd78b0153f1c1123270285f9a2220dbb2a5 /java/src
parentb65a1e46ce06adc462dfc4cbde302ac27a79b695 (diff)
parent5eebaddccbdbd59669d658245eea6e8aca560fc6 (diff)
downloadlatinime-02716083158c3affbcfc719ff6471112d7397578.tar.gz
latinime-02716083158c3affbcfc719ff6471112d7397578.tar.xz
latinime-02716083158c3affbcfc719ff6471112d7397578.zip
am 5eebaddc: Merge "Dismiss "Add to dictionary" hint with non-special char event" into lmp-dev
* commit '5eebaddccbdbd59669d658245eea6e8aca560fc6': Dismiss "Add to dictionary" hint with non-special char event
Diffstat (limited to 'java/src')
-rw-r--r--java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java9
1 files changed, 7 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java b/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java
index 41d9bdcf7..09799334b 100644
--- a/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java
+++ b/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java
@@ -751,6 +751,13 @@ public final class InputLogic {
final InputTransaction inputTransaction,
// TODO: remove this argument
final LatinIME.UIHandler handler) {
+ // In case the "add to dictionary" hint was still displayed.
+ // TODO: Do we really need to check if we have composing text here?
+ if (!mWordComposer.isComposingWord() &&
+ mSuggestionStripViewAccessor.isShowingAddToDictionaryHint()) {
+ mSuggestionStripViewAccessor.dismissAddToDictionaryHint();
+ }
+
final int codePoint = event.mCodePoint;
mSpaceState = SpaceState.NONE;
if (inputTransaction.mSettingsValues.isWordSeparator(codePoint)
@@ -846,8 +853,6 @@ public final class InputLogic {
} else {
sendKeyCodePoint(settingsValues, codePoint);
}
- // In case the "add to dictionary" hint was still displayed.
- mSuggestionStripViewAccessor.dismissAddToDictionaryHint();
}
inputTransaction.setRequiresUpdateSuggestions();
}