Bläddra i källkod

Fixes #217 - status bar blame sticks on editor close

main
Eric Amodio 7 år sedan
förälder
incheckning
42e7020597
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. +1
    -1
      src/currentLineController.ts

+ 1
- 1
src/currentLineController.ts Visa fil

@ -254,7 +254,7 @@ export class CurrentLineController extends Disposable {
async refresh(editor?: TextEditor) {
this._currentLine.line = -1;
if (editor === undefined && this._editor !== undefined) return;
if (editor === undefined && this._editor === undefined) return;
this.clearAnnotations(this._editor);

Laddar…
Avbryt
Spara