22 May
2025
22 May
'25
6:36 p.m.
From: Rémi Bernon <rbernon(a)codeweavers.com> Although we ignore them, the information still describes the current X window state and should be recorded. --- dlls/winex11.drv/window.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/winex11.drv/window.c b/dlls/winex11.drv/window.c index 7c21861e5da..61d049a4af3 100644 --- a/dlls/winex11.drv/window.c +++ b/dlls/winex11.drv/window.c @@ -1697,6 +1697,7 @@ static BOOL handle_state_change( unsigned long serial, unsigned long *expect_ser if (reason) { WARN( "Ignoring %s%s%s%s\n", prefix, reason, received, expected ); + memcpy( current, value, size ); return FALSE; } -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/8123