Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f2e67a57 authored by Vairavan Srinivasan's avatar Vairavan Srinivasan Committed by Jean-Baptiste Queru
Browse files

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
parent efcac2ff
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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);