Browse Source

Fix 14.3 compilation error.

master
Abhishek Banthia 1 year ago
parent
commit
3bfc68f02d
  1. 3
      Clocker/Overall App/AppDefaults.swift

3
Clocker/Overall App/AppDefaults.swift

@ -20,6 +20,7 @@ class AppDefaults {
}
private class func defaultsDictionary() -> [String: Any] {
let selectedCalendars: [String] = []
return [CLThemeKey: 0,
CLDisplayFutureSliderKey: 0,
CLSelectedTimeZoneFormatKey: 0, // 12-hour format
@ -36,7 +37,7 @@ class AppDefaults {
CLShowAllDayEventsInUpcomingView: 1,
CLShowMeetingInMenubar: 0,
CLTruncateTextLength: 30,
CLSelectedCalendars: [],
CLSelectedCalendars: selectedCalendars,
CLAppDisplayOptions: 0,
CLMenubarCompactMode: 1]
}

Loading…
Cancel
Save