Reset the sender's name when paginating backwards

The first message of the timeline would have an avatar and
the rest of the messages would use the previous to be configured
(whether or not should have an avatar).

fixes #63
This commit is contained in:
Konstantinos Sideris 2017-11-03 14:25:01 +02:00
parent 13cb0521fa
commit 7e03ca4359
1 changed files with 4 additions and 0 deletions

View File

@ -179,6 +179,10 @@ TimelineView::addBackwardsEvents(const QString &room_id, const RoomMessages &msg
isTimelineFinished = false;
QList<TimelineItem *> items;
// Reset the sender of the first message in the timeline
// cause we're about to insert a new one.
firstSender_.clear();
// Parse in reverse order to determine where we should not show sender's
// name.
auto ii = msgs.chunk().size();