Skip to content

xwayland/input: Do not ignore leave events

Commit 8a5f3ddb ("set tag on our surface") introduced the use of tags to differentiate our own surfaces, and commit a1d14aa8 ("Clear the "xwl-window" tag on unrealize") removed the tags before the surfaces are actually destroyed.

Xwayland would then rely on these tags on the surface to decide whether to ignore or to process the Wayland event in various places.

However, in doing so, it also checked for the tag on keyboard leave events.

As a result, if the keyboard leave events is received after the X11 window is unrealized, keyboard_handle_leave() would not queue the LeaveNotify events for the DIX to proceed, and the key repeat would kick in and repeat the key event indefinitely.

To avoid the issue, process events regardless of the tag as before in keyboard_handle_leave().

Signed-off-by: Olivier Fourdan ofourdan@redhat.com Fixes: 8a5f3ddb - "xwayland: set tag on our surface" Closes: #1395 (closed)

Merge request reports