Align avatars to top in timeline. Fix #643.

This commit is contained in:
Brent Simmons 2019-05-16 22:32:09 -07:00
parent c2531c4504
commit 3d253ce6d9
1 changed files with 1 additions and 0 deletions

View File

@ -20,6 +20,7 @@ class TimelineTableCellView: NSTableCellView {
private lazy var avatarImageView: NSImageView = {
let imageView = TimelineTableCellView.imageView(with: AppImages.genericFeedImage, scaling: .scaleNone)
imageView.imageAlignment = .alignTop
imageView.wantsLayer = true
return imageView
}()