Explorar el Código

set default for verified icon in InitialsBadge to hidden

cyberta hace 5 años
padre
commit
8925aed46a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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