mirror of
https://github.com/brl/mutter.git
synced 2025-01-23 18:09:10 +00:00
012c0a18ef
Since commit 2ceac4a device-related X11 events aren't processed anymore, causing the input settings not to handle the devices. This is due to the fact that we may never call clutter_seat_handle_event_post() for such events. While this is always happening for the native backend, it doesn't happen in X11 because the events are removed from the queue as part of meta_x11_handle_event(), and thus no event was queued to the stage by the backend events source. This also makes sure that the event post handler is called after the event is actually processed, and not before an event is queued. Fixes: https://gitlab.gnome.org/GNOME/mutter/-/issues/1564 Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1769>