From 72521a6007c742a0e3edc278e31b86915eecfdf0 Mon Sep 17 00:00:00 2001 From: Its-treason <39559178+Its-treason@users.noreply.github.com> Date: Wed, 11 Oct 2023 22:09:11 +0200 Subject: [PATCH] fix(#529): Fix Ctrl+W closes Bruno The default shortcut to close in the menu is Ctrl+W, I changed it to Ctrl+Shift+Q because firefox uses this shortcut for closing --- packages/bruno-electron/src/app/menu-template.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/bruno-electron/src/app/menu-template.js b/packages/bruno-electron/src/app/menu-template.js index 6b4707729..cc0f1267e 100644 --- a/packages/bruno-electron/src/app/menu-template.js +++ b/packages/bruno-electron/src/app/menu-template.js @@ -44,7 +44,7 @@ const template = [ }, { role: 'window', - submenu: [{ role: 'minimize' }, { role: 'close' }] + submenu: [{ role: 'minimize' }, { role: 'close', accelerator: 'CommandOrControl+Shift+Q' }] }, { role: 'help',