提交 b46de2cd 编写于 作者: S Sandeep Somavarapu

Do not clear ranges if editor model is not tehre

上级 092f92d8
......@@ -96,8 +96,10 @@ export class RangeHighlightDecorations implements IDisposable {
}
public dispose() {
this.removeHighlightRange();
this.disposeEditorListeners();
this.editor = null;
if (this.editor && this.editor.getModel()) {
this.removeHighlightRange();
this.disposeEditorListeners();
this.editor = null;
}
}
}
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册