diff --git a/Mac/AppDefaults.swift b/Mac/AppDefaults.swift index 278a53525..caed0f08c 100644 --- a/Mac/AppDefaults.swift +++ b/Mac/AppDefaults.swift @@ -194,7 +194,12 @@ final class AppDefaults { } var hideDockUnreadCount: Bool { - return AppDefaults.bool(for: Key.hideDockUnreadCount) + get { + return AppDefaults.bool(for: Key.hideDockUnreadCount) + } + set { + AppDefaults.setBool(for: Key.hideDockUnreadCount, newValue) + } } #if !MAC_APP_STORE