diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-09-24 14:12:56 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2017-09-24 14:12:56 -0400 |
commit | 61e451ea1b36435341d02ae34548bd0ea3abdd57 (patch) | |
tree | 6dc756c8024b2ec679b5d70087538504a4f2d5c5 /backend/libinput | |
parent | b84d59403fa8649817e84c486e701508f191c949 (diff) |
Move keyboard logic to wlr_{keyboard,seat}
Diffstat (limited to 'backend/libinput')
-rw-r--r-- | backend/libinput/keyboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/libinput/keyboard.c b/backend/libinput/keyboard.c index 1c52a6b8..2a626148 100644 --- a/backend/libinput/keyboard.c +++ b/backend/libinput/keyboard.c @@ -68,5 +68,5 @@ void handle_keyboard_key(struct libinput_event *event, wlr_event.state = WLR_KEY_PRESSED; break; } - wl_signal_emit(&wlr_dev->keyboard->events.key, &wlr_event); + wlr_keyboard_update_state(wlr_dev->keyboard, &wlr_event); } |