lets enable dialpad beeps by default

This commit is contained in:
tibbi 2022-09-02 23:07:27 +02:00
parent dbf112afde
commit 535cc7cebf

View File

@ -77,6 +77,6 @@ class Config(context: Context) : BaseConfig(context) {
set(dialpadVibration) = prefs.edit().putBoolean(DIALPAD_VIBRATION, dialpadVibration).apply()
var dialpadBeeps: Boolean
get() = prefs.getBoolean(DIALPAD_BEEPS, false)
get() = prefs.getBoolean(DIALPAD_BEEPS, true)
set(dialpadBeeps) = prefs.edit().putBoolean(DIALPAD_BEEPS, dialpadBeeps).apply()
}