I also made two videos for this bugfix in qxl-wddm-dod windows driver, link: https://1drv.ms/u/s!As-Ec5SPH0fuiymF5yHwe8R8GY6I?e=WnC3PX From: qi zhou <atmgnd@xxxxxxxxxxx> Sent: Tuesday, September 6, 2022 13:02 To: spice-devel@xxxxxxxxxxxxxxxxxxxxx <spice-devel@xxxxxxxxxxxxxxxxxxxxx> Subject: [PATCH] unhide cursor if pos_x is negative >From e1cb184f71e698509c5ae50c20c687130325da52 Mon Sep 17 00:00:00 2001 From: Qi Zhou <atmgnd@xxxxxxxxxxx> Date: Tue, 6 Sep 2022 12:14:49 +0800 Subject: [PATCH] unhide cursor if pos_x is negative It is valid if position of cursor is negative(not hotspot coordinates). for example: precision section, resize, move, north east arrow... Signed-off-by: Qi Zhou <atmgnd@xxxxxxxxxxx> --- qxldod/QxlDod.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qxldod/QxlDod.cpp b/qxldod/QxlDod.cpp index 341518e..f498115 100755 --- a/qxldod/QxlDod.cpp +++ b/qxldod/QxlDod.cpp @@ -4920,7 +4920,7 @@ NTSTATUS QxlDevice::SetPointerPosition(_In_ CONST DXGKARG_SETPOINTERPOSITION* pS return STATUS_INSUFFICIENT_RESOURCES; } - if (pSetPointerPosition->X < 0 || !pSetPointerPosition->Flags.Visible) { + if (!pSetPointerPosition->Flags.Visible) { cursor_cmd->type = QXL_CURSOR_HIDE; } else { cursor_cmd->type = QXL_CURSOR_MOVE; -- 2.32.0.windows.2