mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-29 06:50:07 +01:00
Input: Actually send Xi 1.x DeviceStateNotify events
When a client has selected for Xi 1.x DeviceStateNotify events, they
should receive them when a DeviceFocusIn event is generated. The code
to do this was there, but an incorrect test meant they were never being
sent.
The "type" passed in is the XI2 type, the XI1 type is in event.type.
Signed-off-by: Daniel Stone <daniel@fooishbar.org>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
(cherry picked from commit 737562257e)
This commit is contained in:
parent
9c803d2fe0
commit
8da04cb0d9
1 changed files with 1 additions and 1 deletions
|
|
@ -1280,7 +1280,7 @@ DeviceFocusEvent(DeviceIntPtr dev, int type, int mode, int detail,
|
|||
DeliverEventsToWindow(dev, pWin, (xEvent *) & event, 1,
|
||||
DeviceFocusChangeMask, NullGrab);
|
||||
|
||||
if ((type == DeviceFocusIn) &&
|
||||
if ((event.type == DeviceFocusIn) &&
|
||||
(wOtherInputMasks(pWin)) &&
|
||||
(wOtherInputMasks(pWin)->inputEvents[dev->id] & DeviceStateNotifyMask))
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue