Skip to content

Commit 36a9a3f

Browse files
authored
Cannot determine if a file has been viewed until you hover over it. (#3438)
Fixes #3379
1 parent 482b65f commit 36a9a3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/view/fileTypeDecorationProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export class FileTypeDecorationProvider implements vscode.FileDecorationProvider
3838
const fileChangeUri = toResourceUri(uri, model.number, change.fileName, fileChange.status);
3939
this._onDidChangeFileDecorations.fire(fileChangeUri);
4040
this._onDidChangeFileDecorations.fire(fileChangeUri.with({ scheme: folderManager.repository.rootUri.scheme }));
41-
this._onDidChangeFileDecorations.fire(fileChangeUri.with({ scheme: 'pr' }));
41+
this._onDidChangeFileDecorations.fire(fileChangeUri.with({ scheme: 'pr', authority: '' }));
4242
}
4343
});
4444
});

0 commit comments

Comments
 (0)