From 19e20f51c791c34b677476ba81793fb23f3a8504 Mon Sep 17 00:00:00 2001 From: tibbi Date: Fri, 2 Mar 2018 15:51:38 +0100 Subject: [PATCH] show the FAB for adding new event time zones by default --- .../main/kotlin/com/simplemobiletools/clock/helpers/Config.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/kotlin/com/simplemobiletools/clock/helpers/Config.kt b/app/src/main/kotlin/com/simplemobiletools/clock/helpers/Config.kt index 13e6b7c9..dbae2269 100644 --- a/app/src/main/kotlin/com/simplemobiletools/clock/helpers/Config.kt +++ b/app/src/main/kotlin/com/simplemobiletools/clock/helpers/Config.kt @@ -13,7 +13,7 @@ class Config(context: Context) : BaseConfig(context) { set(showSeconds) = prefs.edit().putBoolean(SHOW_SECONDS, showSeconds).apply() 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() var selectedTimeZones: Set