diff options
author | Vairavan Srinivasan <vairav@codeaurora.org> | 2010-08-10 11:52:44 -0700 |
---|---|---|
committer | Steve Kondik <shade@chemlab.org> | 2010-10-17 04:29:31 -0400 |
commit | 4a380140e39cd0eb62ba42314fff36d08b75165a (patch) | |
tree | 01cfeaf5a3b8da05e70db6ab137c895a82d63e52 /services/java/com/android/server | |
parent | 7da356427fb057898bed7368f44f8bc80a728535 (diff) | |
download | frameworks_base-4a380140e39cd0eb62ba42314fff36d08b75165a.zip frameworks_base-4a380140e39cd0eb62ba42314fff36d08b75165a.tar.gz frameworks_base-4a380140e39cd0eb62ba42314fff36d08b75165a.tar.bz2 |
InputMethodService: Fix ignore case in showInputMethodPickerFromClient
Fix to avoid posting MSG_SHOW_IM_PICKER in
showInputMethodPickerFromClient when ignoring the request from the
client.
Change-Id: Iff8a0809aea892b4493d5cffbb91adba2d74414e
Diffstat (limited to 'services/java/com/android/server')
-rw-r--r-- | services/java/com/android/server/InputMethodManagerService.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/services/java/com/android/server/InputMethodManagerService.java b/services/java/com/android/server/InputMethodManagerService.java index 4363492..dd4d7e3 100644 --- a/services/java/com/android/server/InputMethodManagerService.java +++ b/services/java/com/android/server/InputMethodManagerService.java @@ -1211,6 +1211,7 @@ public class InputMethodManagerService extends IInputMethodManager.Stub if (mCurClient == null || client == null || mCurClient.client.asBinder() != client.asBinder()) { Slog.w(TAG, "Ignoring showInputMethodDialogFromClient of: " + client); + return; } mHandler.sendEmptyMessage(MSG_SHOW_IM_PICKER); |