提交 bac36e97 编写于 作者: M Matt Bierner

Close image preview when file on disk is deleted

Fixes #81884
上级 ef698fa6
......@@ -88,6 +88,11 @@ export class Preview extends Disposable {
this.render();
}
}));
this._register(watcher.onDidDelete(e => {
if (e.toString() === this.resource.toString()) {
this.webviewEditor.dispose();
}
}));
this.render();
this.update();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册