Browse Source

set default for verified icon in InitialsBadge to hidden

cyberta 5 năm trước cách đây
mục cha
commit
8925aed46a
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      deltachat-ios/View/InitialsBadge.swift

+ 1 - 1
deltachat-ios/View/InitialsBadge.swift

@@ -16,7 +16,7 @@ class InitialsBadge: UIView {
     private var verifiedView: UIImageView = {
            let imgView = UIImageView()
            let img = UIImage(named: "verified")
-           imgView.isHidden = false
+           imgView.isHidden = true
            imgView.image = img
            imgView.translatesAutoresizingMaskIntoConstraints = false
            return imgView