[PATCH 0/1] MR268: riched20: Commit and repaint after the SetFont method is called.
Signed-off-by: Jinoh Kang <jinoh.kang.kr(a)gmail.com> -- https://gitlab.winehq.org/wine/wine/-/merge_requests/268
From: Jinoh Kang <jinoh.kang.kr(a)gmail.com> Signed-off-by: Jinoh Kang <jinoh.kang.kr(a)gmail.com> --- dlls/riched20/richole.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dlls/riched20/richole.c b/dlls/riched20/richole.c index 3d88b8a65b0..579ee45b54a 100644 --- a/dlls/riched20/richole.c +++ b/dlls/riched20/richole.c @@ -647,6 +647,8 @@ static void textrange_set_font(ITextRange *range, ITextFont *font) cursor_from_char_ofs( services->editor, start, &from ); cursor_from_char_ofs( services->editor, end, &to ); ME_SetCharFormat( services->editor, &from, &to, &fmt ); + ME_CommitUndo( editor ); + ME_UpdateRepaint( editor, FALSE ); } } -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/268
Hi, It looks like your patch introduced the new failures shown below. Please investigate and fix them before resubmitting your patch. If they are not new, fixing them anyway would help a lot. Otherwise please ask for the known failures list to be updated. The full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=117194 Your paranoid android. === debian11 (build log) === ../wine/dlls/riched20/richole.c:650:24: error: ‘editor’ undeclared (first use in this function) Task: The win32 Wine build failed === debian11 (build log) === ../wine/dlls/riched20/richole.c:650:24: error: ‘editor’ undeclared (first use in this function) Task: The wow64 Wine build failed
participants (3)
-
Jinoh Kang -
Jinoh Kang (@iamahuman) -
Marvin