ソースを参照

Fixes issue where the wrong diff line could be shown

main
Eric Amodio 7年前
コミット
6a9977b954
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      src/gitService.ts

+ 1
- 1
src/gitService.ts ファイルの表示

@ -671,7 +671,7 @@ export class GitService extends Disposable {
return [
chunk.previous[line + deleted - 1],
chunk.current[line + deleted]
chunk.current[line + deleted + (chunk.currentStart - chunk.previousStart)]
];
}
catch (ex) {

読み込み中…
キャンセル
保存