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

Commit 784b2ac4 authored by Shu Chen's avatar Shu Chen Committed by Automerger Merge Worker
Browse files

DO NOT MERGE Uses equals to compare the old/new subtypes. am: 4507d65f

parents f74eedc3 4507d65f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3263,7 +3263,7 @@ public final class InputMethodManagerService extends IInputMethodManager.Stub
                notifyInputMethodSubtypeChangedLocked(userId, info, null);
                return;
            }
            if (newSubtype != oldSubtype) {
            if (!newSubtype.equals(oldSubtype)) {
                setSelectedInputMethodAndSubtypeLocked(info, subtypeId, true);
                IInputMethodInvoker curMethod = getCurMethodLocked();
                if (curMethod != null) {