From 561c56a8e0190196ae0c8a8f3343dbad3fe0fec4 Mon Sep 17 00:00:00 2001 From: ByungCheol Date: Sun, 7 Jun 2026 17:43:17 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20PC(Electron)=20=ED=95=9C=EA=B8=80=20IME?= =?UTF-8?q?=20=EC=B2=AB=20=EA=B8=80=EC=9E=90=20=EC=A4=91=EB=B3=B5=20?= =?UTF-8?q?=EC=9E=85=EB=A0=A5=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - webPreferences spellcheck:false — Chromium 맞춤법 검사기가 한글 조합을 방해해 첫 자음이 중복('ㅅ사')되던 Electron 알려진 버그 회피 (APK/모바일은 정상이라 데스크톱 전용 이슈) Co-Authored-By: Claude Opus 4.8 --- electron/main.cjs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/electron/main.cjs b/electron/main.cjs index c29c697..56ee751 100644 --- a/electron/main.cjs +++ b/electron/main.cjs @@ -55,6 +55,8 @@ function createWindow() { webPreferences: { contextIsolation: true, nodeIntegration: false, + // 한글 IME 첫 글자 중복 입력 방지 — Chromium 맞춤법 검사기가 조합을 방해하는 Electron 알려진 버그 회피 + spellcheck: false, }, }) if (s?.maximized) win.maximize()