Skip to content

Commit

Permalink
fixes #82577
Browse files Browse the repository at this point in the history
  • Loading branch information
sbatten committed Nov 2, 2019
1 parent 49a8fce commit 4565afe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/base/browser/ui/menu/menubar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ export class MenuBar extends Disposable {

createOverflowMenu(): void {
const label = this.options.compactMode !== undefined ? nls.localize('mAppMenu', 'Application Menu') : nls.localize('mMore', "...");
const buttonElement = $('div.menubar-menu-button', { 'role': 'menuitem', 'tabindex': -1, 'aria-label': label, 'aria-haspopup': true });
const buttonElement = $('div.menubar-menu-button', { 'role': 'menuitem', 'tabindex': -1, 'aria-label': label, 'title': label, 'aria-haspopup': true });
const titleElement = $('div.menubar-menu-title.toolbar-toggle-more', { 'role': 'none', 'aria-hidden': true });

buttonElement.appendChild(titleElement);
Expand Down

0 comments on commit 4565afe

Please sign in to comment.