From 863ba726adeb66b7817e30a425d0aebe4d1304ed Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Sat, 5 Dec 2020 16:26:18 -0800 Subject: [PATCH] =?UTF-8?q?Don=E2=80=99t=20draw=20separators=20by=20defaul?= =?UTF-8?q?t.=20(Yes,=20I=20changed=20my=20mine.)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Mac/MainWindow/Timeline/TimelineTableRowView.swift | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Mac/MainWindow/Timeline/TimelineTableRowView.swift b/Mac/MainWindow/Timeline/TimelineTableRowView.swift index 55a7e7e1e..bf42f4edd 100644 --- a/Mac/MainWindow/Timeline/TimelineTableRowView.swift +++ b/Mac/MainWindow/Timeline/TimelineTableRowView.swift @@ -47,12 +47,8 @@ class TimelineTableRowView : NSTableRowView { } override func viewDidMoveToSuperview() { - if #available(macOS 11.0, *) { + if AppDefaults.shared.timelineShowsSeparators { addSeparatorView() - } else { - if AppDefaults.shared.timelineShowsSeparators { - addSeparatorView() - } } }