From ccc699741d4c7318ae9007aa81cf4a7a4bf243db Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Tue, 9 Jan 2018 21:33:13 -0800 Subject: [PATCH] Decrease the opacity of the placeholder color for avatars in the timeline. --- Evergreen/MainWindow/Timeline/Cell/TimelineTableCellView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Evergreen/MainWindow/Timeline/Cell/TimelineTableCellView.swift b/Evergreen/MainWindow/Timeline/Cell/TimelineTableCellView.swift index cfc5de7b1..336dda0d7 100644 --- a/Evergreen/MainWindow/Timeline/Cell/TimelineTableCellView.swift +++ b/Evergreen/MainWindow/Timeline/Cell/TimelineTableCellView.swift @@ -214,7 +214,7 @@ class TimelineTableCellView: NSTableCellView { avatarImageView.wantsLayer = true avatarImageView.layer?.cornerRadius = cellAppearance.avatarCornerRadius if avatarImageView.image == nil { - avatarImageView.layer?.backgroundColor = NSColor(calibratedWhite: 0.0, alpha: 0.1).cgColor + avatarImageView.layer?.backgroundColor = NSColor(calibratedWhite: 0.0, alpha: 0.05).cgColor } else { avatarImageView.layer?.backgroundColor = NSColor.clear.cgColor