show the FAB for adding new event time zones by default

This commit is contained in:
tibbi 2018-03-02 15:51:38 +01:00
parent b800435bb2
commit 19e20f51c7
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ class Config(context: Context) : BaseConfig(context) {
set(showSeconds) = prefs.edit().putBoolean(SHOW_SECONDS, showSeconds).apply() set(showSeconds) = prefs.edit().putBoolean(SHOW_SECONDS, showSeconds).apply()
var displayOtherTimeZones: Boolean var displayOtherTimeZones: Boolean
get() = prefs.getBoolean(DISPLAY_OTHER_TIME_ZONES, false) get() = prefs.getBoolean(DISPLAY_OTHER_TIME_ZONES, true)
set(displayOtherTimeZones) = prefs.edit().putBoolean(DISPLAY_OTHER_TIME_ZONES, displayOtherTimeZones).apply() set(displayOtherTimeZones) = prefs.edit().putBoolean(DISPLAY_OTHER_TIME_ZONES, displayOtherTimeZones).apply()
var selectedTimeZones: Set<String> var selectedTimeZones: Set<String>