Skip to content

Commit 8b83a72

Browse files
author
Ken Wakasa
committed
Fix a bug in InputMethodSubtype constructor
bug: 5249480 Change-Id: I707e45cc0606dae7824c478ab586fc24d3f417f8
1 parent 94d86da commit 8b83a72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/java/android/view/inputmethod/InputMethodSubtype.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public final class InputMethodSubtype implements Parcelable {
6363
*/
6464
public InputMethodSubtype(int nameId, int iconId, String locale, String mode, String extraValue,
6565
boolean isAuxiliary) {
66-
this(nameId, iconId, locale, mode, extraValue, false, false);
66+
this(nameId, iconId, locale, mode, extraValue, isAuxiliary, false);
6767
}
6868

6969
/**

0 commit comments

Comments
 (0)