瀏覽代碼

fix jumping of mute/pin icons in chat list cells

cyberta 5 年之前
父節點
當前提交
fad7fc35b9
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      deltachat-ios/View/ContactCell.swift

+ 2 - 1
deltachat-ios/View/ContactCell.swift

@@ -72,7 +72,8 @@ class ContactCell: UITableViewCell {
         label.font = UIFont.systemFont(ofSize: 14)
         label.textColor = DcColors.middleGray
         label.textAlignment = .right
-        label.setContentCompressionResistancePriority(UILayoutPriority(rawValue: 2), for: NSLayoutConstraint.Axis.horizontal)
+        label.setContentHuggingPriority(.defaultHigh, for: NSLayoutConstraint.Axis.horizontal)
+        label.setContentCompressionResistancePriority(UILayoutPriority(rawValue: 10), for: NSLayoutConstraint.Axis.horizontal)
         return label
     }()