You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe what problem your feature request solves
The desktop drop down menu role: 'about' is probably MacOS only
Describe the solution you'd like
Add in code like this, to make it cross platform:
{
label: 'about Electron',
// Set menu roles
role: 'about', // about, this value is only for Mac OS X systems
// Click event is invalid when the role attribute of click event can be recognized
click: () => {
var aboutWin = new BrowserWindow({ width: 300, height: 200, parent: win, modal: true });
aboutWin.loadFile('about.html');
}
},
Additional context
The text was updated successfully, but these errors were encountered:
Describe what problem your feature request solves
The desktop drop down menu role: 'about' is probably MacOS only
Describe the solution you'd like
Add in code like this, to make it cross platform:
Additional context
The text was updated successfully, but these errors were encountered: