From f98efbd3f0b01c7c8538a51b8de9dc2c04d9adf2 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Mon, 2 Nov 2020 03:13:32 -0500 Subject: [PATCH] Ensures annotations refresh on settings change --- src/annotations/fileAnnotationController.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/annotations/fileAnnotationController.ts b/src/annotations/fileAnnotationController.ts index c9e1c4c..0519ce5 100644 --- a/src/annotations/fileAnnotationController.ts +++ b/src/annotations/fileAnnotationController.ts @@ -378,6 +378,7 @@ export class FileAnnotationController implements Disposable { const currentProvider = this.getProvider(editor); if (currentProvider?.annotationType === type) { + await currentProvider.provideAnnotation(shaOrLine); await currentProvider.selection(shaOrLine); return true; }