mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-05-16 23:12:47 +00:00
add another option to the "more letters with diacritics" settings
with letters that used to be default in many languages now this setting is default
This commit is contained in:
parent
d7d47670a7
commit
5378d8d0a3
9 changed files with 14 additions and 15 deletions
|
@ -507,10 +507,11 @@ public final class Settings implements SharedPreferences.OnSharedPreferenceChang
|
|||
}
|
||||
|
||||
public static int readMorePopupKeysPref(final SharedPreferences prefs) {
|
||||
return switch (prefs.getString(Settings.PREF_MORE_POPUP_KEYS, "normal")) {
|
||||
return switch (prefs.getString(Settings.PREF_MORE_POPUP_KEYS, "main")) {
|
||||
case "all" -> LocaleKeyboardInfosKt.POPUP_KEYS_ALL;
|
||||
case "more" -> LocaleKeyboardInfosKt.POPUP_KEYS_MORE;
|
||||
default -> LocaleKeyboardInfosKt.POPUP_KEYS_NORMAL;
|
||||
case "normal" -> LocaleKeyboardInfosKt.POPUP_KEYS_NORMAL;
|
||||
default -> LocaleKeyboardInfosKt.POPUP_KEYS_MAIN;
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue