Ver a proveniência

Fixes #217 - status bar blame sticks on editor close

main
Eric Amodio há 7 anos
ascendente
cometimento
42e7020597
1 ficheiros alterados com 1 adições e 1 eliminações
  1. +1
    -1
      src/currentLineController.ts

+ 1
- 1
src/currentLineController.ts Ver ficheiro

@ -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);

Carregando…
Cancelar
Guardar