Add small 1px margin to make sure we scroll when Composing message appear while we just opened a chatroom

This commit is contained in:
QuentinArguillere 2022-11-22 17:24:44 +01:00
parent d447158a25
commit 9977644872

View file

@ -679,7 +679,7 @@ static UICompositeViewDescription *compositeDescription = nil;
_composeIndicatorView.hidden = !visible;
}];
if (visible) {
if (_tableController.tableView.contentOffset.y + newComposingFrame.size.height >= (_tableController.tableView.contentSize.height - _tableController.tableView.frame.size.height)) {
if (_tableController.tableView.contentOffset.y + newComposingFrame.size.height >= (_tableController.tableView.contentSize.height - _tableController.tableView.frame.size.height - 1)) {
[_tableController scrollToBottom:TRUE];
}
}