aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/LatinIME.java
diff options
context:
space:
mode:
authorsatok <satok@google.com>2011-06-28 01:18:30 +0900
committersatok <satok@google.com>2011-06-28 01:18:30 +0900
commit5ba25ac18090fb0854d054c0c68e9d0d0e895311 (patch)
treee9cbd2a64c373aa87afc020b12374b287b92d8cf /java/src/com/android/inputmethod/latin/LatinIME.java
parentdcecc32f3b0df9d66e9049aa7fb9e13745c543d2 (diff)
parent660d42fb36b00914e5fc3aeabdec844e3af7ff6b (diff)
downloadlatinime-5ba25ac18090fb0854d054c0c68e9d0d0e895311.tar.gz
latinime-5ba25ac18090fb0854d054c0c68e9d0d0e895311.tar.xz
latinime-5ba25ac18090fb0854d054c0c68e9d0d0e895311.zip
Merge remote-tracking branch 'goog/master' into merge
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r--java/src/com/android/inputmethod/latin/LatinIME.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java
index 45f35ec03..874d77f19 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -591,7 +591,6 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar
inputView.setProximityCorrectionEnabled(true);
// If we just entered a text field, maybe it has some old text that requires correction
mRecorrection.checkRecorrectionOnStart();
- inputView.setForeground(true);
voiceIme.onStartInputView(inputView.getWindowToken());
@@ -679,7 +678,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar
public void onFinishInputView(boolean finishingInput) {
super.onFinishInputView(finishingInput);
KeyboardView inputView = mKeyboardSwitcher.getKeyboardView();
- if (inputView != null) inputView.setForeground(false);
+ if (inputView != null) inputView.cancelAllMessage();
// Remove pending messages related to update suggestions
mHandler.cancelUpdateSuggestions();
mHandler.cancelUpdateOldSuggestions();