diff options
author | Tony Crisci <tony@dubstepdish.com> | 2017-11-09 17:29:28 -0500 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2017-11-09 17:29:28 -0500 |
commit | 739361aa70d61cbc9e062d6a90df09f258a1bbcb (patch) | |
tree | 58dc199a9bbec8a06e11fab98f918a8bb70262b7 /backend/libinput | |
parent | c680ace5e8209d573e7ce2d676bbf5fe1b4ff894 (diff) |
wlr-keyboard: take out modifiers event struct (for now)
Diffstat (limited to 'backend/libinput')
-rw-r--r-- | backend/libinput/keyboard.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/backend/libinput/keyboard.c b/backend/libinput/keyboard.c index 9a24c791..065d8ead 100644 --- a/backend/libinput/keyboard.c +++ b/backend/libinput/keyboard.c @@ -54,7 +54,6 @@ void handle_keyboard_key(struct libinput_event *event, struct libinput_event_keyboard *kbevent = libinput_event_get_keyboard_event(event); struct wlr_event_keyboard_key wlr_event = { 0 }; - wlr_event.device = wlr_dev; wlr_event.time_msec = usec_to_msec(libinput_event_keyboard_get_time_usec(kbevent)); wlr_event.keycode = libinput_event_keyboard_get_key(kbevent); |