We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd3f5cb commit 12746b7Copy full SHA for 12746b7
src/electron-main.ts
@@ -505,8 +505,8 @@ app.on("ready", async () => {
505
506
global.mainWindow.webContents.on("before-input-event", (event: Event, input: Input): void => {
507
const exitShortcutPressed =
508
- input.type === "keyDown" && exitShortcuts.some((shortcutFn) => shortcutFn(input, process.platform));
509
-
+ input.type === "keyDown" && exitShortcuts.some((shortcutFn) => shortcutFn(input, process.platform));
+
510
// We only care about the exit shortcuts here
511
if (!exitShortcutPressed || !global.mainWindow) return;
512
0 commit comments