소스 검색

Fixes #274 - TextEditor is closed/disposed

main
Eric Amodio 6 년 전
부모
커밋
e041383cd8
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. +1
    -0
      src/currentLineController.ts

+ 1
- 0
src/currentLineController.ts 파일 보기

@ -364,6 +364,7 @@ export class CurrentLineController extends Disposable {
private clearAnnotations(editor: TextEditor | undefined) {
if (editor === undefined) return;
if ((editor as any)._disposed === true) return;
editor.setDecorations(annotationDecoration, []);
}

불러오는 중...
취소
저장