Exit early when object is disposed

Fixes #206116
This commit is contained in:
Daniel Imms 2024-02-23 11:37:30 -08:00
parent ec72162ee6
commit ef1836b20c
No known key found for this signature in database
GPG key ID: 5F0FF45B19E3A5D2

View file

@ -95,6 +95,9 @@ export class TerminalStickyScrollOverlay extends Disposable {
// Eagerly create the overlay
xtermCtor.then(ctor => {
if (this._store.isDisposed) {
return;
}
this._stickyScrollOverlay = this._register(new ctor({
rows: 1,
cols: this._xterm.raw.cols,