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

increase visible space of a BasicCell title if no value is assigned to the cell

cyberta преди 5 години
родител
ревизия
19c1fbc6d1
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      deltachat-ios/View/BasicCell.swift

+ 1 - 1
deltachat-ios/View/BasicCell.swift

@@ -82,7 +82,7 @@ class BasicCell: UITableViewCell {
             value.numberOfLines = 1
             value.textAlignment = .right
             stackView.axis = .horizontal
-            stackView.spacing = 10
+            stackView.spacing = (value.text?.count ?? 0) == 0 ? 0 : 10
 
         } else {
             title.numberOfLines = 0