diff --git a/src/main/index.ts b/src/main/index.ts index 61d124e3..c2fed2dc 100644 --- a/src/main/index.ts +++ b/src/main/index.ts @@ -489,7 +489,10 @@ async function createWindow(first = true): Promise { const menuBuilder = new MenuBuilder(mainWindow); menuBuilder.buildMenu(); - Menu.setApplicationMenu(null); + + if (process.platform !== 'darwin') { + Menu.setApplicationMenu(null); + } // Open URLs in the user's browser mainWindow.webContents.setWindowOpenHandler((edata) => {