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

Commit f3cb9ed2 authored by satok's avatar satok Committed by Android (Google) Code Review
Browse files

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

parents 8734f31d 7dca6cd8
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();