Browse Source

Merge pull request #799 from deltachat/message_label_num_lines

set number of lines in fileviews titleview
cyBerta 5 năm trước cách đây
mục cha
commit
29fefc9500
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  1. 1 0
      deltachat-ios/MessageKit/Views/FileView.swift

+ 1 - 0
deltachat-ios/MessageKit/Views/FileView.swift

@@ -10,6 +10,7 @@ class FileView: UIView {
     private lazy var titleView: MessageLabel = {
         let label = MessageLabel()
         label.translatesAutoresizingMaskIntoConstraints = false
+        label.numberOfLines = 3
         return label
     }()