mirror of
https://github.com/savoirfairelinux/jami-client-qt.git
synced 2026-01-10 01:00:19 +08:00
messagelistview: fix message loading
On some cases (like many edition/reply) the atYBeginning is still true causing the view to not load messages anymore (after retrying it loads as the beginning) Change-Id: I9da474224f6fc0a39cf405c8bfe9d5201849ea64
This commit is contained in:
@@ -297,7 +297,7 @@ JamiListView {
|
||||
}
|
||||
|
||||
function onMoreMessagesLoaded() {
|
||||
if (root.contentHeight < root.height) {
|
||||
if (root.contentHeight < root.height || root.atYBeginning) {
|
||||
root.loadMoreMsgsIfNeeded()
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user