Skip to content

Commit

Permalink
fix issue with latin layout with additional keys (de_DE, sr-Latn, ...)
Browse files Browse the repository at this point in the history
  • Loading branch information
Helium314 committed Jan 8, 2024
1 parent d64681c commit 3d8c908
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -805,7 +805,7 @@ abstract class KeyboardParser(private val params: KeyboardParams, private val co
KeyboardId.ELEMENT_NUMBER -> "number"
KeyboardId.ELEMENT_PHONE -> "phone"
KeyboardId.ELEMENT_PHONE_SYMBOLS -> "phone_symbols"
else -> params.mId.mSubtype.keyboardLayoutSetName
else -> params.mId.mSubtype.keyboardLayoutSetName.substringBeforeLast("+")
}

// todo:
Expand Down

0 comments on commit 3d8c908

Please sign in to comment.