We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e898ef6 commit 23b524fCopy full SHA for 23b524f
1 file changed
src/vs/workbench/contrib/browserView/common/browserView.ts
@@ -439,6 +439,9 @@ export class BrowserViewModel extends Disposable implements IBrowserViewModel {
439
440
async setVisible(visible: boolean): Promise<void> {
441
this._visible = visible; // Set optimistically so model is in sync immediately
442
+ if (this._store.isDisposed) {
443
+ return;
444
+ }
445
return this.browserViewService.setVisible(this.id, visible);
446
}
447
0 commit comments