We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6d1029b + 70e0c03 commit bd08862Copy full SHA for bd08862
src/browser/services/RenderService.ts
@@ -86,7 +86,7 @@ export class RenderService extends Disposable implements IRenderService {
86
}
87
88
private _onIntersectionChange(entry: IntersectionObserverEntry): void {
89
- this._isPaused = !entry.isIntersecting;
+ this._isPaused = entry.intersectionRatio === 0;
90
if (!this._isPaused && this._needsFullRefresh) {
91
this.refreshRows(0, this._rowCount - 1);
92
this._needsFullRefresh = false;
0 commit comments