aboutsummaryrefslogtreecommitdiff
path: root/include/wlr
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-06-04 16:44:22 +0100
committerGitHub <noreply@github.com>2018-06-04 16:44:22 +0100
commit78966417f42cee6f33139bcc653ff43efb19d3fe (patch)
tree55cf2c0a5a3de2b91f1420a8b85359817080e673 /include/wlr
parentcb66569a5840139c526dde0a5fbffc3a4982ebb2 (diff)
parent51b9883ea0201195ed7c151175725c926c94bd47 (diff)
Merge pull request #1031 from martinetd/multibind-seat
seat: allow clients to bind to seat multiple times
Diffstat (limited to 'include/wlr')
-rw-r--r--include/wlr/types/wlr_seat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/wlr/types/wlr_seat.h b/include/wlr/types/wlr_seat.h
index f4840c89..5e04003d 100644
--- a/include/wlr/types/wlr_seat.h
+++ b/include/wlr/types/wlr_seat.h
@@ -13,11 +13,11 @@
* managed by wlr_seat; some may be NULL.
*/
struct wlr_seat_client {
- struct wl_resource *wl_resource;
struct wl_client *client;
struct wlr_seat *seat;
// lists of wl_resource
+ struct wl_list wl_resources;
struct wl_list pointers;
struct wl_list keyboards;
struct wl_list touches;