From 019a601de6a8ae083852c2d384c814dcc7aeeb72 Mon Sep 17 00:00:00 2001 From: Colin Harrison Date: Wed, 4 Nov 2009 15:16:03 +0000 Subject: Xming: Add mouse motion events with flag POINTER_SCREEN in winEnqueueMotion() Add mouse motion events with flag POINTER_SCREEN in winEnqueueMotion(), as they are in screen coordindates and may need to be scaled to the axis range appropriately Signed-off-by: Jon TURNEY --- hw/xwin/winmouse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hw/xwin') diff --git a/hw/xwin/winmouse.c b/hw/xwin/winmouse.c index 99eb6b8d2..342f20d56 100644 --- a/hw/xwin/winmouse.c +++ b/hw/xwin/winmouse.c @@ -381,7 +381,7 @@ void winEnqueueMotion(int x, int y) GetEventList(&events); nevents = GetPointerEvents(events, g_pwinPointer, MotionNotify, 0, - POINTER_ABSOLUTE, 0, 2, valuators); + POINTER_ABSOLUTE | POINTER_SCREEN, 0, 2, valuators); for (i = 0; i < nevents; i++) mieqEnqueue(g_pwinPointer, events[i].event); -- cgit v1.2.3