浏览代码

fix distorted images in quotes

cyberta 4 年之前
父节点
当前提交
c670095062
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      deltachat-ios/Chat/Views/QuoteView.swift

+ 2 - 0
deltachat-ios/Chat/Views/QuoteView.swift

@@ -30,6 +30,8 @@ public class QuoteView: UIView {
     public lazy var imagePreview: UIImageView = {
         let view = UIImageView()
         view.translatesAutoresizingMaskIntoConstraints = false
+        view.contentMode = .scaleAspectFill
+        view.clipsToBounds = true
         return view
     }()