Ver código fonte

Fixes #274 - TextEditor is closed/disposed

main
Eric Amodio 6 anos atrás
pai
commit
e041383cd8
1 arquivos alterados com 1 adições e 0 exclusões
  1. +1
    -0
      src/currentLineController.ts

+ 1
- 0
src/currentLineController.ts Ver arquivo

@ -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, []);
}

Carregando…
Cancelar
Salvar