Module: wine
Branch: master
Commit: dd38e4576b89921d45759aee333c5ccf70c31dff
URL: https://source.winehq.org/git/wine.git/?a=commit;h=dd38e4576b89921d45759aee…
Author: Gabriel Ivăncescu <gabrielopcode(a)gmail.com>
Date: Wed Jan 15 14:21:36 2020 +0200
winex11.drv: Don't confine the pointer to any window when just checking for active grab.
Fixes a regression introduced by 74efb3e872aebf57a42d62b52e149ae26f320c9a,
which caused some random pointer warping on a setup with multiple "workspaces"
when switching between them and a full screen game that warped the mouse.
Signed-off-by: Gabriel Ivăncescu <gabrielopcode(a)gmail.com>
Signed-off-by: Rémi Bernon <rbernon(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/winex11.drv/mouse.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/winex11.drv/mouse.c b/dlls/winex11.drv/mouse.c
index 290732fa93..7f0edd9be6 100644
--- a/dlls/winex11.drv/mouse.c
+++ b/dlls/winex11.drv/mouse.c
@@ -1478,7 +1478,7 @@ BOOL CDECL X11DRV_SetCursorPos( INT x, INT y )
if (!clipping_cursor &&
XGrabPointer( data->display, root_window, False,
PointerMotionMask | ButtonPressMask | ButtonReleaseMask,
- GrabModeAsync, GrabModeAsync, root_window, None, CurrentTime ) != GrabSuccess)
+ GrabModeAsync, GrabModeAsync, None, None, CurrentTime ) != GrabSuccess)
{
WARN( "refusing to warp pointer to %u, %u without exclusive grab\n", pos.x, pos.y );
return FALSE;
Module: tools
Branch: master
Commit: fb0f4cfbda1d69d8460a06f678c7aaac250353d4
URL: https://source.winehq.org/git/tools.git/?a=commit;h=fb0f4cfbda1d69d8460a06f…
Author: Francois Gouget <fgouget(a)codeweavers.com>
Date: Wed Jan 15 12:53:22 2020 +0100
testbot/LogUtils: Tag new errors instead of filtering them.
TagNewErrors() replaces GetNewLogErrors() and tags new errors in the
provided error list instead of returning a new list containing only the
new errors.
Signed-off-by: Francois Gouget <fgouget(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
testbot/bin/WineSendLog.pl | 28 ++++++----
testbot/lib/WineTestBot/LogUtils.pm | 103 ++++++++++++++++++++++--------------
testbot/web/JobDetails.pl | 12 ++---
3 files changed, 87 insertions(+), 56 deletions(-)
Diff: https://source.winehq.org/git/tools.git/?a=commitdiff;h=fb0f4cfbda1d69d8460…