From 34a2860c97fa3e5800a2e0148b54e6b7d54344f4 Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Sun, 18 Oct 2020 18:27:36 -0500 Subject: [PATCH] Fix row background color. Issue #2503 --- Mac/MainWindow/Timeline/TimelineTableRowView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mac/MainWindow/Timeline/TimelineTableRowView.swift b/Mac/MainWindow/Timeline/TimelineTableRowView.swift index e7a78d6a2..44a4203ec 100644 --- a/Mac/MainWindow/Timeline/TimelineTableRowView.swift +++ b/Mac/MainWindow/Timeline/TimelineTableRowView.swift @@ -35,7 +35,7 @@ class TimelineTableRowView : NSTableRowView { } override func drawBackground(in dirtyRect: NSRect) { - NSColor.controlBackgroundColor.setFill() + NSColor.alternatingContentBackgroundColors[0].setFill() dirtyRect.fill() }