瀏覽代碼

use same font color in VideoInviteCell as in system messages

cyberta 3 年之前
父節點
當前提交
42a5778fe6
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3 1
      deltachat-ios/Chat/Views/Cells/VideoInviteCell.swift

+ 3 - 1
deltachat-ios/Chat/Views/Cells/VideoInviteCell.swift

@@ -27,7 +27,7 @@ public class VideoInviteCell: UITableViewCell {
         view.translatesAutoresizingMaskIntoConstraints = false
         view.setContentHuggingPriority(.defaultHigh, for: .horizontal)
         view.setImage(#imageLiteral(resourceName: "ic_videochat").withRenderingMode(.alwaysTemplate))
-        view.tintColor = DcColors.defaultInverseColor
+        view.tintColor = .white
         view.imagePadding = 3
         return view
     }()
@@ -39,6 +39,7 @@ public class VideoInviteCell: UITableViewCell {
         label.lineBreakMode = .byWordWrapping
         label.textAlignment = .center
         label.font = UIFont.preferredFont(for: .body, weight: .regular)
+        label.textColor = DcColors.systemMessageFontColor
         return label
     }()
 
@@ -49,6 +50,7 @@ public class VideoInviteCell: UITableViewCell {
         label.lineBreakMode = .byWordWrapping
         label.textAlignment = .center
         label.font = UIFont.preferredFont(for: .body, weight: .bold)
+        label.textColor = DcColors.systemMessageFontColor
         return label
     }()