increase font size for hints
This commit is contained in:
parent
1f1963d135
commit
bb1445347d
@ -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) {
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user