Knock the corner off the inner image when it is visible

This commit is contained in:
Maurice Parker 2019-09-26 14:31:43 -05:00
parent 80a5a539e8
commit 0a2cbfde22
1 changed files with 2 additions and 0 deletions

View File

@ -29,6 +29,8 @@ final class TimelineAvatarView: NSView {
imageView.animates = false
imageView.imageAlignment = .alignCenter
imageView.imageScaling = .scaleProportionallyUpOrDown
imageView.layer.cornerRadius = 2.0
imageView.clipsToBounds = true
return imageView
}()