Jelajahi Sumber

ensure MultilineLabelCell immediately reacts on font scaling

cyberta 4 tahun lalu
induk
melakukan
dea0c0e550
1 mengubah file dengan 7 tambahan dan 0 penghapusan
  1. 7 0
      deltachat-ios/View/MultilineLabelCell.swift

+ 7 - 0
deltachat-ios/View/MultilineLabelCell.swift

@@ -60,6 +60,13 @@ class MultilineLabelCell: UITableViewCell {
             logger.info("status: tapped outside urls or phone numbers")
         }
     }
+
+    override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) {
+        if previousTraitCollection?.preferredContentSizeCategory !=
+            traitCollection.preferredContentSizeCategory {
+            label.font = UIFont.preferredFont(for: .body, weight: .regular)
+        }
+    }
 }
 
 extension MultilineLabelCell: MessageLabelDelegate {