Compare commits

..

2 Commits

Author SHA1 Message Date
ByungCheol 8a9badb01d Merge branch 'dev'
CI / build (push) Successful in 34s
Deploy / deploy (push) Failing after 11m39s
2026-06-07 17:43:18 +09:00
ByungCheol 561c56a8e0 fix: PC(Electron) 한글 IME 첫 글자 중복 입력 수정
CI / build (push) Failing after 15m13s
- webPreferences spellcheck:false — Chromium 맞춤법 검사기가 한글 조합을 방해해
  첫 자음이 중복('ㅅ사')되던 Electron 알려진 버그 회피 (APK/모바일은 정상이라 데스크톱 전용 이슈)

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-07 17:43:17 +09:00
+2
View File
@@ -55,6 +55,8 @@ function createWindow() {
webPreferences: {
contextIsolation: true,
nodeIntegration: false,
// 한글 IME 첫 글자 중복 입력 방지 — Chromium 맞춤법 검사기가 조합을 방해하는 Electron 알려진 버그 회피
spellcheck: false,
},
})
if (s?.maximized) win.maximize()