Skip to content

Commit 07b73db

Browse files
authored
Merge pull request microsoft#181944 from microsoft/merogge/debug
add `ariaLabel` for start debugging button
2 parents 2e671b3 + 4fcec5e commit 07b73db

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/vs/workbench/contrib/debug/browser/debugActionViewItems.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ export class StartDebugActionViewItem extends BaseActionViewItem {
7575
const keybindingLabel = keybinding ? ` (${keybinding})` : '';
7676
this.start.title = this.action.label + keybindingLabel;
7777
this.start.setAttribute('role', 'button');
78+
this.start.ariaLabel = this.start.title;
7879

7980
this.toDispose.push(dom.addDisposableListener(this.start, dom.EventType.CLICK, () => {
8081
this.start.blur();

0 commit comments

Comments
 (0)