aboutsummaryrefslogtreecommitdiff
path: root/backend/libinput
diff options
context:
space:
mode:
authorSimon Zeni <simon@bl4ckb0ne.ca>2022-03-09 15:05:12 -0500
committerKirill Primak <vyivel@eclair.cafe>2022-03-17 18:16:14 +0000
commit9a17200446952f67b10b7801a272b6abdd1ae8b3 (patch)
tree242489591ded3ee482b2ae492e535309224b09f4 /backend/libinput
parentbd6c000d142fe6a8e893f1cdd2d5eb0b9d2ac7b8 (diff)
types/wlr_keyboard: uniformize events name
Diffstat (limited to 'backend/libinput')
-rw-r--r--backend/libinput/keyboard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/libinput/keyboard.c b/backend/libinput/keyboard.c
index 210fd450..789260d5 100644
--- a/backend/libinput/keyboard.c
+++ b/backend/libinput/keyboard.c
@@ -36,7 +36,7 @@ void handle_keyboard_key(struct libinput_event *event,
struct wlr_keyboard *kb) {
struct libinput_event_keyboard *kbevent =
libinput_event_get_keyboard_event(event);
- struct wlr_event_keyboard_key wlr_event = { 0 };
+ struct wlr_keyboard_key_event wlr_event = { 0 };
wlr_event.time_msec =
usec_to_msec(libinput_event_keyboard_get_time_usec(kbevent));
wlr_event.keycode = libinput_event_keyboard_get_key(kbevent);