disable success dialog by default

This commit is contained in:
tibbi 2017-03-09 21:05:54 +01:00
parent f75f460be5
commit 472a75e5c9
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ class Config(context: Context) : BaseConfig(context) {
}
var displaySuccess: Boolean
get() = prefs.getBoolean(DISPLAY_SUCCESS, true)
get() = prefs.getBoolean(DISPLAY_SUCCESS, false)
set(displaySuccess) = prefs.edit().putBoolean(DISPLAY_SUCCESS, displaySuccess).apply()
var clickableLinks: Boolean