mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-17 06:59:43 -05:00
wlr_xdg_popup: grab touch events alongside pointer and keyboard
Fixes #933
This commit is contained in:
parent
40d17c1305
commit
78d96009e4
4 changed files with 102 additions and 14 deletions
|
|
@ -87,6 +87,7 @@ struct wlr_xdg_popup_grab {
|
|||
struct wl_client *client;
|
||||
struct wlr_seat_pointer_grab pointer_grab;
|
||||
struct wlr_seat_keyboard_grab keyboard_grab;
|
||||
struct wlr_seat_touch_grab touch_grab;
|
||||
struct wlr_seat *seat;
|
||||
struct wl_list popups;
|
||||
struct wl_list link; // wlr_xdg_shell::popup_grabs
|
||||
|
|
|
|||
|
|
@ -95,6 +95,7 @@ struct wlr_xdg_popup_grab_v6 {
|
|||
struct wl_client *client;
|
||||
struct wlr_seat_pointer_grab pointer_grab;
|
||||
struct wlr_seat_keyboard_grab keyboard_grab;
|
||||
struct wlr_seat_touch_grab touch_grab;
|
||||
struct wlr_seat *seat;
|
||||
struct wl_list popups;
|
||||
struct wl_list link; // wlr_xdg_shell_v6::popup_grabs
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue