Fix tableview scroll when opening notification

Signed-off-by: Andy Uhnak <andyuhnak@gmail.com>
This commit is contained in:
Andy Uhnak
2022-02-21 17:21:51 +00:00
parent aa97de0314
commit cdb28d6870
2 changed files with 7 additions and 0 deletions
@@ -2348,6 +2348,12 @@
{
// Do a full reload
[_bubblesTableView reloadData];
if (shouldScrollToBottom) {
// If we need to scroll to the bottom after the reload, layout refresh needs to be triggered,
// otherwise contentSize of the table view will not be up-to-date
// e.g. https://stackoverflow.com/a/31324129
[_bubblesTableView layoutIfNeeded];
}
}
if (shouldScrollToBottom)