From 8f941966464c7a85a32f5c17878f35bfed4d2bc6 Mon Sep 17 00:00:00 2001 From: rushii <33725716+rushiiMachine@users.noreply.github.com> Date: Wed, 26 Mar 2025 17:01:50 -0700 Subject: [PATCH] fix: disable Browser Tab shortcuts like Ctrl+W (#1130) Fixes #934 --------- Co-authored-by: Vending Machine --- src/main/mainWindow.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main/mainWindow.ts b/src/main/mainWindow.ts index c4159f5..3205738 100644 --- a/src/main/mainWindow.ts +++ b/src/main/mainWindow.ts @@ -253,8 +253,7 @@ function initMenuBar(win: BrowserWindow) { }, { role: "fileMenu" }, { role: "editMenu" }, - { role: "viewMenu" }, - { role: "windowMenu" } + { role: "viewMenu" } ]); Menu.setApplicationMenu(menu);