aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTony Crisci <tony@dubstepdish.com>2017-09-23 14:40:56 -0400
committerTony Crisci <tony@dubstepdish.com>2017-09-23 14:41:57 -0400
commit84a8f1b42dbd1882bef295cff66cd0c24afeb978 (patch)
tree28f52b04e927751ca84f0ac5741da8fe418a2413 /include
parent9cde828c9491b67fb8cacdc227168dcadaa36e00 (diff)
add keys array param to seat keyboard enter
Diffstat (limited to 'include')
-rw-r--r--include/wlr/types/wlr_seat.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/wlr/types/wlr_seat.h b/include/wlr/types/wlr_seat.h
index c6bab180..a8df7131 100644
--- a/include/wlr/types/wlr_seat.h
+++ b/include/wlr/types/wlr_seat.h
@@ -128,10 +128,10 @@ void wlr_seat_pointer_send_axis(struct wlr_seat *wlr_seat, uint32_t time,
/**
* Send a keyboard enter event to the given surface and consider it to be the
* focused surface for the keyboard. This will send a leave event to the last
- * surface that was entered.
+ * surface that was entered. Pass an array of currently pressed keys.
*/
void wlr_seat_keyboard_enter(struct wlr_seat *wlr_seat,
- struct wlr_surface *surface);
+ struct wlr_surface *surface, struct wl_array keys);
/**
* Clear the focused surface for the keyboard and leave all entered surfaces.