浏览代码

fix vertical alignment of BasicCell title for large font sizes

cyberta 5 年之前
父节点
当前提交
a2dca685a1
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      deltachat-ios/View/BasicCell.swift

+ 2 - 0
deltachat-ios/View/BasicCell.swift

@@ -82,12 +82,14 @@ class BasicCell: UITableViewCell {
             value.numberOfLines = 1
             value.textAlignment = .right
             stackView.axis = .horizontal
+            stackView.spacing = 10
 
         } else {
             title.numberOfLines = 0
             value.numberOfLines = 0
             value.textAlignment = .left
             stackView.axis = .vertical
+            stackView.spacing = 0
         }
     }