seat: add missing touch_frame handler

wl_touch::frame() is expected to be sent to client to indicate end of
touch frame event and not sending it may cause issues.
For example, Qt applications using Qt Wayland platform plugin do not
consider touch events until this end of frame to be received.
This commit is contained in:
Jonathan GUILLOT 2023-08-23 18:40:15 +02:00 committed by Simon Ser
parent 121e3ac8b2
commit 7ec7e3df2b
2 changed files with 13 additions and 0 deletions

1
seat.h
View file

@ -39,6 +39,7 @@ struct cg_seat {
struct wl_listener touch_down;
struct wl_listener touch_up;
struct wl_listener touch_motion;
struct wl_listener touch_frame;
struct wl_list drag_icons;
struct wl_listener request_start_drag;