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

Commit 7dca6cd8 authored by satok's avatar satok
Browse files

Show aux ime in the selection dialog if a keyboard is shown.

Bug: 4968819

Change-Id: If4ac4549f179637fe3ecd313edcb44d5eb89349f
parent 01fa0d7a
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -2025,8 +2025,9 @@ public class InputMethodManagerService extends IInputMethodManager.Stub
                    final int subtypeCount = imi.getSubtypeCount();
                    for (int j = 0; j < subtypeCount; ++j) {
                        InputMethodSubtype subtype = imi.getSubtypeAt(j);
                        // We show all possible IMEs and subtypes when an IME is shown.
                        if (enabledSubtypeSet.contains(String.valueOf(subtype.hashCode()))
                                && !subtype.isAuxiliary()) {
                                && (mInputShown || !subtype.isAuxiliary())) {
                            final CharSequence title;
                            int nameResId = subtype.getNameResId();
                            String mode = subtype.getMode();