Explorar el Código

set ChatContactRequestBar's intrinsic content size, now all chat messages are shown above the ChatContactRequestBar

cyberta hace 4 años
padre
commit
14c2588693
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. 4 1
      deltachat-ios/Chat/Views/ChatContactRequestBar.swift

+ 4 - 1
deltachat-ios/Chat/Views/ChatContactRequestBar.swift

@@ -84,5 +84,8 @@ public class ChatContactRequestBar: UIView, InputItem {
     @objc func onBlockPressed() {
     @objc func onBlockPressed() {
         delegate?.onBlockPressed()
         delegate?.onBlockPressed()
     }
     }
-}
 
 
+    public override var intrinsicContentSize: CGSize {
+        return CGSize(width: super.intrinsicContentSize.width, height: 44)
+    }
+}