increase font size for hints

This commit is contained in:
Tha_14 2024-03-06 00:26:22 +02:00
parent 1f1963d135
commit bb1445347d
2 changed files with 3 additions and 2 deletions

View File

@ -1255,7 +1255,8 @@ private extension ChatPrivateController {
}
func updateLastReadDate() {
submanagerObjects.change(chat, lastReadDateInterval: Date().timeIntervalSince1970 ?? 0.0)
//TODO(Tha_14): unwrapping optional value nil error here needs to be handled
submanagerObjects.change(chat, lastReadDateInterval: Date().timeIntervalSince1970)
}
func imageCellWithMessage(_ message: OCTMessageAbstract, incoming: Bool) -> (ChatMovableDateCellModel, ChatMovableDateCell) {

View File

@ -198,7 +198,7 @@ private extension ExtendedTextField {
hintLabel = UILabel()
hintLabel.textColor = textColor
hintLabel.font = UIFont.antidoteFontWithSize(14.0, weight: .light)
hintLabel.font = UIFont.antidoteFontWithSize(15.0, weight: .medium)
hintLabel.numberOfLines = 0
hintLabel.backgroundColor = .clear
addSubview(hintLabel)