add comma key popups for number layouts

(for phone layouts it's on period because there is no comma key)
fixes #823
This commit is contained in:
Helium314 2024-05-31 09:58:35 +02:00
parent d171c6b3c6
commit af636badab
4 changed files with 7 additions and 7 deletions

View file

@ -119,7 +119,7 @@ sealed interface KeyData : AbstractKeyData {
keys.add("!icon/clipboard_normal_key|!code/key_clipboard")
if (!params.mId.mEmojiKeyEnabled && !params.mId.isNumberLayout)
keys.add("!icon/emoji_normal_key|!code/key_emoji")
if (!params.mId.mLanguageSwitchKeyEnabled)
if (!params.mId.mLanguageSwitchKeyEnabled && !params.mId.isNumberLayout)
keys.add("!icon/language_switch_key|!code/key_language_switch")
if (!params.mId.mOneHandedModeEnabled)
keys.add("!icon/start_onehanded_mode_key|!code/key_start_onehanded")