diff --git a/app/commands.ts b/app/commands.ts index 6e8a7dfe..4f3b1691 100644 --- a/app/commands.ts +++ b/app/commands.ts @@ -111,8 +111,8 @@ const commands: Record void> = { installCLI(true); }, 'window:hamburgerMenu': () => { - if (getConfig().showHamburgerMenu) { - Menu.getApplicationMenu()!.popup({x: 15, y: 15}); + if (process.platform !== 'darwin' && ['', true].includes(getConfig().showHamburgerMenu)) { + Menu.getApplicationMenu()!.popup({x: 25, y: 22}); } } };