浏览代码

Merge pull request #590 from deltachat/truncatedLabels

Fixed truncated labels in ContactCell
cyBerta 5 年之前
父节点
当前提交
a0d767c73b
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      deltachat-ios/View/ContactCell.swift

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

@@ -16,6 +16,7 @@ class ContactCell: UITableViewCell {
     lazy var toplineStackView: UIStackView = {
         let stackView = UIStackView(arrangedSubviews: [titleLabel, pinnedIndicator, timeLabel, locationStreamingIndicator])
         stackView.axis = .horizontal
+        stackView.alignment = .firstBaseline
         stackView.spacing = 4
         return stackView
     }()