Set scaling to .scaleNone in the avatar image view in the timeline, since we’re pre-scaling the images.

This commit is contained in:
Brent Simmons 2019-05-13 22:23:06 -07:00
parent 7b40ca221b
commit 51730d9b1c
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ class TimelineTableCellView: NSTableCellView {
private let feedNameView = TimelineTableCellView.singleLineTextField()
private lazy var avatarImageView: NSImageView = {
let imageView = TimelineTableCellView.imageView(with: AppImages.genericFeedImage, scaling: .scaleProportionallyDown)
let imageView = TimelineTableCellView.imageView(with: AppImages.genericFeedImage, scaling: .scaleNone)
imageView.wantsLayer = true
return imageView
}()