show dialpad letters at the dialpad by default

This commit is contained in:
tibbi 2019-12-05 10:09:02 +01:00
parent ebefc976f5
commit 255782b167

View File

@ -54,6 +54,6 @@ class Config(context: Context) : BaseConfig(context) {
set(showDialpadButton) = prefs.edit().putBoolean(SHOW_DIALPAD_BUTTON, showDialpadButton).apply()
var showDialpadLetters: Boolean
get() = prefs.getBoolean(SHOW_DIALPAD_LETTERS, false)
get() = prefs.getBoolean(SHOW_DIALPAD_LETTERS, true)
set(showDialpadLetters) = prefs.edit().putBoolean(SHOW_DIALPAD_LETTERS, showDialpadLetters).apply()
}