Add about/version on non mac too #161

pull/192/head
Mikael Finstad 7 years ago
parent 15ec7ed9f0
commit ce3a6d48b8

@ -77,6 +77,8 @@ module.exports = (app, mainWindow, newVersion) => {
label: 'Learn More', label: 'Learn More',
click() { electron.shell.openExternal(homepage); }, click() { electron.shell.openExternal(homepage); },
}, },
...(process.platform === 'darwin' ? [] : [{ role: 'about' }]),
], ],
}); });
} }

Loading…
Cancel
Save