[PATCH 0/1] MR267: riched20: Commit and repaint after changing TextFont properties.
Signed-off-by: Jinoh Kang <jinoh.kang.kr(a)gmail.com> -- https://gitlab.winehq.org/wine/wine/-/merge_requests/267
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..f778acbe257 100644 --- a/dlls/riched20/richole.c +++ b/dlls/riched20/richole.c @@ -805,6 +805,8 @@ static HRESULT set_textfont_prop(ITextFontImpl *font, enum textfont_prop_id prop 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 ); return S_OK; } -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/267
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=117193 Your paranoid android. === debian11 (build log) === ../wine/dlls/riched20/richole.c:808:20: error: ‘editor’ undeclared (first use in this function) Task: The win32 Wine build failed === debian11 (build log) === ../wine/dlls/riched20/richole.c:808:20: error: ‘editor’ undeclared (first use in this function) Task: The wow64 Wine build failed
participants (3)
-
Jinoh Kang -
Jinoh Kang (@iamahuman) -
Marvin