May 15, 2026
12:41 p.m.
From: Marc-Aurel Zent <mzent@codeweavers.com> --- dlls/imm32/imm.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dlls/imm32/imm.c b/dlls/imm32/imm.c index f05f2d772a3..73f0009f15d 100644 --- a/dlls/imm32/imm.c +++ b/dlls/imm32/imm.c @@ -603,6 +603,8 @@ static void ime_save_input_context( struct ime *ime, HIMC himc, INPUTCONTEXT *ct ctx->hCompStr = old.hCompStr; ctx->hCandInfo = old.hCandInfo; ctx->hGuideLine = old.hGuideLine; + ctx->fdwConversion = old.fdwConversion; + ctx->fdwSentence = old.fdwSentence; if (!(ctx->hPrivate = ImmCreateIMCC( ime->info.dwPrivateDataSize ))) WARN( "Failed to allocate IME private data\n" ); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/10913