提交 4f2ffa00 编写于 作者: S SteVen Batten

fixes #58306

上级 5dec5879
......@@ -415,14 +415,16 @@ export class MenubarControl extends Disposable {
}
private updateMnemonicVisibility(visible: boolean): void {
this.customMenus.forEach(customMenu => {
if (customMenu.titleElement.children.length) {
let child = customMenu.titleElement.children.item(0) as HTMLElement;
if (child) {
child.style.textDecoration = visible ? 'underline' : null;
if (this.customMenus) {
this.customMenus.forEach(customMenu => {
if (customMenu.titleElement.children.length) {
let child = customMenu.titleElement.children.item(0) as HTMLElement;
if (child) {
child.style.textDecoration = visible ? 'underline' : null;
}
}
}
});
});
}
}
private onRecentlyOpenedChange(): void {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册