summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2021-09-15 23:38:01 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2021-09-15 23:38:01 +0200
commit5bff9df4ae3291598549fc0904725a1ec3c416e3 (patch)
tree1080993977f0f2a5a11fde50e4ab0f0ea4e0c324 /src
parentReenable reuseItems for the message view (diff)
downloadnheko-5bff9df4ae3291598549fc0904725a1ec3c416e3.tar.xz
Workaround for broken fetchMore() with reuseItems
Diffstat (limited to 'src')
-rw-r--r--src/timeline/TimelineModel.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/timeline/TimelineModel.cpp b/src/timeline/TimelineModel.cpp

index ca303040..e03c32a7 100644 --- a/src/timeline/TimelineModel.cpp +++ b/src/timeline/TimelineModel.cpp
@@ -717,6 +717,10 @@ TimelineModel::data(const QModelIndex &index, int role) const if (index.row() < 0 && index.row() >= rowCount()) return QVariant(); + // HACK(Nico): fetchMore likes to break with dynamically sized delegates and reuseItems + if (index.row() + 1 == rowCount() && !m_paginationInProgress) + const_cast<TimelineModel *>(this)->fetchMore(index); + auto event = events.get(rowCount() - index.row() - 1); if (!event)