Fix emoji position on iOS 15

This commit is contained in:
Justin Mazzocchi 2022-05-05 19:29:05 -07:00
parent 67cc55a08e
commit 3e93ced674
1 changed files with 16 additions and 10 deletions

View File

@ -29,6 +29,12 @@ final class AnimatedAttachmentLabel: UILabel, EmojiInsertable {
else { return }
animatedAttachment.imageView.frame = imageBounds
// iOS 15 needs this for some inexplicable reason
if #available(iOS 15, *) {
animatedAttachment.imageView.frame.origin.y -= font.lineHeight
}
animatedAttachment.imageView.contentMode = .scaleAspectFit
if animatedAttachment.imageView.superview != self {