diff --git a/lib/browser/api/menu-item-roles.ts b/lib/browser/api/menu-item-roles.ts index 08157029dfc3f..5f39e9b014e0f 100644 --- a/lib/browser/api/menu-item-roles.ts +++ b/lib/browser/api/menu-item-roles.ts @@ -26,7 +26,7 @@ export const roleList: Record = { get label () { return isLinux ? 'About' : `About ${app.name}`; }, - ...(isWindows && { appMethod: () => app.showAboutPanel() }) + ...((isWindows || isLinux) && { appMethod: () => app.showAboutPanel() }) }, close: { label: isMac ? 'Close Window' : 'Close',