From 9cf6cafab2cce6e33a66870c136b2cca2f589bea Mon Sep 17 00:00:00 2001 From: th-kim0823 Date: Thu, 14 May 2026 13:10:52 +0900 Subject: [PATCH] =?UTF-8?q?fix(capture):=20blur-on-hide=20=EC=A0=9C?= =?UTF-8?q?=EA=B1=B0=20=E2=80=94=20esc/cmd+enter=20=EA=B9=8C=EC=A7=80=20?= =?UTF-8?q?=EC=B0=BD=20=EC=9C=A0=EC=A7=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit dogfood: 사용자가 quickCapture 띄운 채로 다른 창 클릭 시 즉시 hide 되어 저장/취소 의도를 명확히 표시하기 전에 사라지는 현상. blur 핸들러 제거 → ESC (취소) / Cmd+Enter (저장) 누를 때까지 창 유지. alwaysOnTop + screen-saver level 이라 다른 앱 위에 떠 있음. Co-Authored-By: Claude Opus 4.7 (1M context) --- src/main/windows/quickCaptureWindow.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/windows/quickCaptureWindow.ts b/src/main/windows/quickCaptureWindow.ts index f2e4651..15f951e 100644 --- a/src/main/windows/quickCaptureWindow.ts +++ b/src/main/windows/quickCaptureWindow.ts @@ -45,7 +45,6 @@ export function createQuickCaptureWindow(): BrowserWindowType { win.loadFile(join(__dirname, '../renderer/quickcapture/index.html')); } - win.on('blur', () => { if (win?.isVisible()) win.hide(); }); return win; }