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
This commit is contained in:
Vairavan Srinivasan
2010-08-10 11:52:44 -07:00
committed by Jean-Baptiste Queru
parent efcac2ffba
commit f2e67a5779

View File

@@ -1225,6 +1225,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);