From 83e0a5bc5700a568fcc2a5918ddc9b6788b0ea89 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Tue, 7 Apr 2020 00:13:53 -0400 Subject: [PATCH] Fixes #94242 - must query if no cursor --- src/vs/workbench/contrib/timeline/browser/timelinePane.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vs/workbench/contrib/timeline/browser/timelinePane.ts b/src/vs/workbench/contrib/timeline/browser/timelinePane.ts index ae8eca65ff6..59bf2530561 100644 --- a/src/vs/workbench/contrib/timeline/browser/timelinePane.ts +++ b/src/vs/workbench/contrib/timeline/browser/timelinePane.ts @@ -497,6 +497,7 @@ export class TimelinePane extends ViewPane { // don't bother querying for more if ( !reset && + options?.cursor !== undefined && timeline !== undefined && (!timeline?.more || timeline.items.length > timeline.lastRenderedIndex + PageSize) ) {