소스 검색

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)