mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 13:43:07 +00:00
statusbar: put aria-label on label container not on parent
fixes #94962
This commit is contained in:
parent
77e79529e1
commit
c6d841c90f
1 changed files with 1 additions and 1 deletions
|
@ -695,7 +695,7 @@ class StatusbarEntryItem extends Disposable {
|
|||
}
|
||||
|
||||
if (!this.entry || entry.ariaLabel !== this.entry.ariaLabel) {
|
||||
this.container.setAttribute('aria-label', entry.ariaLabel);
|
||||
this.labelContainer.setAttribute('aria-label', entry.ariaLabel);
|
||||
}
|
||||
|
||||
// Update: Tooltip (on the container, because label can be disabled)
|
||||
|
|
Loading…
Reference in a new issue