chore: update textView minimum height from 88 to 64

This commit is contained in:
CMK 2022-02-17 16:35:59 +08:00
parent 10eae495e4
commit e5a72972cd
1 changed files with 1 additions and 6 deletions

View File

@ -131,14 +131,9 @@ extension ComposeStatusContentTableViewCell {
metaText.textView.leadingAnchor.constraint(equalTo: textEditorViewContainerView.layoutMarginsGuide.leadingAnchor),
metaText.textView.trailingAnchor.constraint(equalTo: textEditorViewContainerView.layoutMarginsGuide.trailingAnchor),
metaText.textView.bottomAnchor.constraint(equalTo: textEditorViewContainerView.bottomAnchor),
metaText.textView.heightAnchor.constraint(greaterThanOrEqualToConstant: 88).priority(.defaultHigh),
metaText.textView.heightAnchor.constraint(greaterThanOrEqualToConstant: 64).priority(.defaultHigh),
])
statusContentWarningEditorView.textView.delegate = self
// statusView.nameTrialingDotLabel.isHidden = true
// statusView.dateLabel.isHidden = true
// statusContentWarningEditorView.isHidden = true
// statusView.statusContainerStackView.isHidden = true
}
}