mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 06:38:23 +00:00
fixes #94464
This commit is contained in:
parent
6b52881f29
commit
65a914802c
1 changed files with 2 additions and 2 deletions
|
@ -407,12 +407,12 @@ export class SCMAccessibilityProvider implements IListAccessibilityProvider<Tree
|
|||
} else {
|
||||
const result: string[] = [];
|
||||
|
||||
result.push(basename(element.sourceUri));
|
||||
|
||||
if (element.decorations.tooltip) {
|
||||
result.push(element.decorations.tooltip);
|
||||
}
|
||||
|
||||
result.push(basename(element.sourceUri));
|
||||
|
||||
const path = this.labelService.getUriLabel(dirname(element.sourceUri), { relative: true, noPrefix: true });
|
||||
|
||||
if (path) {
|
||||
|
|
Loading…
Reference in a new issue