From 255782b167abafa71779e676b6533837f6e44c85 Mon Sep 17 00:00:00 2001 From: tibbi Date: Thu, 5 Dec 2019 10:09:02 +0100 Subject: [PATCH] show dialpad letters at the dialpad by default --- .../kotlin/com/simplemobiletools/contacts/pro/helpers/Config.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/kotlin/com/simplemobiletools/contacts/pro/helpers/Config.kt b/app/src/main/kotlin/com/simplemobiletools/contacts/pro/helpers/Config.kt index e1a40af8..5dfeca8c 100644 --- a/app/src/main/kotlin/com/simplemobiletools/contacts/pro/helpers/Config.kt +++ b/app/src/main/kotlin/com/simplemobiletools/contacts/pro/helpers/Config.kt @@ -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() }