浏览代码

Fixes #217 - status bar blame sticks on editor close

main
Eric Amodio 7 年前
父节点
当前提交
42e7020597
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      src/currentLineController.ts

+ 1
- 1
src/currentLineController.ts 查看文件

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

正在加载...
取消
保存