1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-29 02:40:05 +00:00

Windows: Fix bug where IME failed to display on Windows 11

This commit is contained in:
reuk 2024-11-28 20:42:46 +00:00
parent fc76e936d3
commit 038b0d6c9e
No known key found for this signature in database

View file

@ -4328,7 +4328,7 @@ private:
case WM_IME_SETCONTEXT:
imeHandler.handleSetContext (h, wParam == TRUE);
lParam &= ~(LPARAM) ISC_SHOWUICOMPOSITIONWINDOW;
return ImmIsUIMessage (h, message, wParam, lParam);
break;
case WM_IME_STARTCOMPOSITION: imeHandler.handleStartComposition (*this); return 0;
case WM_IME_ENDCOMPOSITION: imeHandler.handleEndComposition (*this, h); return 0;