Fix for when to show "Jump to last".

Issue #15
This commit is contained in:
N-Pex 2021-04-09 17:04:30 +02:00
parent dfb8e6a814
commit 413941523e

View file

@ -864,7 +864,8 @@ export default {
}
this.showScrollToEnd =
container.scrollHeight - container.scrollTop.toFixed(0) >
container.clientHeight;
container.clientHeight || (this.timelineWindow &&
this.timelineWindow.canPaginate(EventTimeline.FORWARDS));
this.restartRRTimer();
},