aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/LatinIME.java
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2013-07-25 04:09:58 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-07-25 04:09:58 -0700
commit3b1e8d55c6d540fc3e2c8b669d25b4b2fab5f5db (patch)
treeeeb9c4ef938bebafd4d497ae0756d12b67b249ec /java/src/com/android/inputmethod/latin/LatinIME.java
parentdfaf547b614bcdaa91a4a19a2c39f673e80b8de1 (diff)
parentc34933828efc2fcb711be4bb7b2b9d7508c4e311 (diff)
downloadlatinime-3b1e8d55c6d540fc3e2c8b669d25b4b2fab5f5db.tar.gz
latinime-3b1e8d55c6d540fc3e2c8b669d25b4b2fab5f5db.tar.xz
latinime-3b1e8d55c6d540fc3e2c8b669d25b4b2fab5f5db.zip
am c3493382: Merge "Cancel all ongoing event when onFinishInputView"
* commit 'c34933828efc2fcb711be4bb7b2b9d7508c4e311': Cancel all ongoing event when onFinishInputView
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 ef8a1c80c..6384ef74d 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -886,7 +886,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
mKeyboardSwitcher.onFinishInputView();
final MainKeyboardView mainKeyboardView = mKeyboardSwitcher.getMainKeyboardView();
if (mainKeyboardView != null) {
- mainKeyboardView.cancelAllMessages();
+ mainKeyboardView.cancelAllOngoingEvents();
}
// Remove pending messages related to update suggestions
mHandler.cancelUpdateSuggestionStrip();