瀏覽代碼

avoid forced unwrapping

cyberta 5 年之前
父節點
當前提交
927e69e72c
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      deltachat-ios/View/MultilineTextFieldCell.swift

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

@@ -64,7 +64,7 @@ class MultilineTextFieldCell: UITableViewCell, UITextViewDelegate {
 
         textField.alignLeadingToAnchor(margins.leadingAnchor, paddingLeading: -5)
         textField.alignTrailingToAnchor(margins.trailingAnchor)
-        let fontsize = textField.font!.pointSize
+        let fontsize = UIFont.preferredFont(forTextStyle: .body).pointSize
         contentView.addConstraint(textField.constraintHeightTo(fontsize * 4))
         textField.alignTopToAnchor(descriptionField.bottomAnchor)