소스 검색

Fixes changes hover not showing the correct diff when showing recent changes annotations

main
Eric Amodio 7 년 전
부모
커밋
55ef004332
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. +2
    -1
      src/annotations/recentChangesAnnotationProvider.ts

+ 2
- 1
src/annotations/recentChangesAnnotationProvider.ts 파일 보기

@ -50,7 +50,8 @@ export class RecentChangesAnnotationProvider extends AnnotationProviderBase {
let message: string | undefined = undefined;
if (cfg.hover.changes) {
message = Annotations.getHoverDiffMessage(commit, chunk.previous[count], change);
const previousPos = count - (chunk.previousPosition.start + (chunk.previousPosition.start - chunk.currentPosition.start)) + 1;
message = Annotations.getHoverDiffMessage(commit, chunk.previous[previousPos], change);
}
decorators.push({

불러오는 중...
취소
저장