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 <jon.turney@dronecode.org.uk>
This commit is contained in:
Colin Harrison 2009-11-04 15:16:03 +00:00 committed by Jon TURNEY
parent 7af1240b57
commit 019a601de6
1 changed files with 1 additions and 1 deletions

View File

@ -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);