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 19:00:45 +0900
committerTadashi G. Takaoka <takaoka@google.com>2013-07-25 20:05:39 +0900
commit5c095e59f679f726df1b6655fbbd73e310ac0dec (patch)
treeb01ec17c9b338cb31339616058a706750d4b6c84 /java/src/com/android/inputmethod/latin/LatinIME.java
parent0e08d70fe52737582b6c83dbf48aaf4d83063566 (diff)
downloadlatinime-5c095e59f679f726df1b6655fbbd73e310ac0dec.tar.gz
latinime-5c095e59f679f726df1b6655fbbd73e310ac0dec.tar.xz
latinime-5c095e59f679f726df1b6655fbbd73e310ac0dec.zip
Cancel all ongoing event when onFinishInputView
Bug: 9334755 Change-Id: If0c2ac49a50f4a529aefeca603569f9413367469
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();