diff --git a/main/app.ts b/main/app.ts index 175924c..7cd86fd 100644 --- a/main/app.ts +++ b/main/app.ts @@ -21,6 +21,11 @@ export class App { } open() { + if (!IS_DARWIN) { + // Users can still access menu bar with pressing Alt key. + this.winsetMenu(Menu.getApplicationMenu()); + } + this.win.webContents.on('dom-ready', () => { this.win.show(); });