diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-09-21 18:30:04 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2017-09-21 18:51:33 -0400 |
commit | d558745633e83b47e08f362f44164f3965dac2f7 (patch) | |
tree | d42c678034e82d78c2f5f92fda73ee208a4c1b8e /include/wlr | |
parent | 446adda1a3ad55b21522b9e81fd192c4a63510e7 (diff) |
Handle tablet motion in example compositor
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/types/wlr_seat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/wlr/types/wlr_seat.h b/include/wlr/types/wlr_seat.h index 221e4489..4b433ccb 100644 --- a/include/wlr/types/wlr_seat.h +++ b/include/wlr/types/wlr_seat.h @@ -107,6 +107,6 @@ void wlr_seat_pointer_send_motion(struct wlr_seat *wlr_seat, uint32_t time, * button event are surface-local. */ void wlr_seat_pointer_send_button(struct wlr_seat *wlr_seat, uint32_t time, - uint32_t button, enum wlr_button_state state); + uint32_t button, uint32_t state); #endif |