Преглед на файлове

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
     }()