Decrease the opacity of the placeholder color for avatars in the timeline.
This commit is contained in:
parent
8b2f9b333a
commit
ccc699741d
|
@ -214,7 +214,7 @@ class TimelineTableCellView: NSTableCellView {
|
||||||
avatarImageView.wantsLayer = true
|
avatarImageView.wantsLayer = true
|
||||||
avatarImageView.layer?.cornerRadius = cellAppearance.avatarCornerRadius
|
avatarImageView.layer?.cornerRadius = cellAppearance.avatarCornerRadius
|
||||||
if avatarImageView.image == nil {
|
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 {
|
else {
|
||||||
avatarImageView.layer?.backgroundColor = NSColor.clear.cgColor
|
avatarImageView.layer?.backgroundColor = NSColor.clear.cgColor
|
||||||
|
|
Loading…
Reference in New Issue