Parcourir la source

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

main
Eric Amodio il y a 7 ans
Parent
révision
55ef004332
1 fichiers modifiés avec 2 ajouts et 1 suppressions
  1. +2
    -1
      src/annotations/recentChangesAnnotationProvider.ts

+ 2
- 1
src/annotations/recentChangesAnnotationProvider.ts Voir le fichier

@ -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({

Chargement…
Annuler
Enregistrer