From 186769bad33b485ba0f63c32a43203171209fa41 Mon Sep 17 00:00:00 2001 From: Simon Schneegans Date: Sat, 2 May 2026 05:58:18 +0200 Subject: [PATCH] :wrench: Do not intercept close event --- src/main/app.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/app.ts b/src/main/app.ts index 4cdabd830..4f6444e1d 100644 --- a/src/main/app.ts +++ b/src/main/app.ts @@ -526,10 +526,10 @@ export class KandoApp { // Make sure that closing the menu window just hides it instead of actually closing it. this.menuWindow.on('close', (event) => { - if (!this.isQuitting) { - event.preventDefault(); - this.menuWindow.hide(); - } + // if (!this.isQuitting) { + // event.preventDefault(); + // this.menuWindow.hide(); + // } }); }