From b43670b747a7f8ba479ac30daebb507fc7d7f950 Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Sun, 11 Feb 2018 18:06:06 -0800 Subject: [PATCH] =?UTF-8?q?Disallow=20blurring=20behind=20the=20title=20ba?= =?UTF-8?q?r,=20since=20it=E2=80=99s=20buggy.=20It=20doesn=E2=80=99t=20alw?= =?UTF-8?q?ays=20update=20the=20blur=20when=20the=20content=20changes=20?= =?UTF-8?q?=E2=80=94=20it=20appears=20to=20wait=20for=20a=20scroll.=20This?= =?UTF-8?q?=20can=20lead=20to=20a=20blur=20of=20the=20selection=20color=20?= =?UTF-8?q?under=20the=20title=20bar=20when=20it=20doesn=E2=80=99t=20make?= =?UTF-8?q?=20sense.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Evergreen/AppDefaults.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Evergreen/AppDefaults.swift b/Evergreen/AppDefaults.swift index 46e17bc0d..79fa7f561 100644 --- a/Evergreen/AppDefaults.swift +++ b/Evergreen/AppDefaults.swift @@ -128,7 +128,7 @@ private extension AppDefaults { static func registerDefaults() { - let defaults = [Key.sidebarFontSize: FontSize.medium.rawValue, Key.timelineFontSize: FontSize.medium.rawValue, Key.detailFontSize: FontSize.medium.rawValue, Key.timelineSortDirection: ComparisonResult.orderedDescending.rawValue] + let defaults: [String : Any] = [Key.sidebarFontSize: FontSize.medium.rawValue, Key.timelineFontSize: FontSize.medium.rawValue, Key.detailFontSize: FontSize.medium.rawValue, Key.timelineSortDirection: ComparisonResult.orderedDescending.rawValue, "NSScrollViewShouldScrollUnderTitlebar": false] UserDefaults.standard.register(defaults: defaults) }