aboutsummaryrefslogtreecommitdiff
path: root/backend/libinput/keyboard.c
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-09-24 14:12:56 -0400
committerDrew DeVault <sir@cmpwn.com>2017-09-24 14:12:56 -0400
commit61e451ea1b36435341d02ae34548bd0ea3abdd57 (patch)
tree6dc756c8024b2ec679b5d70087538504a4f2d5c5 /backend/libinput/keyboard.c
parentb84d59403fa8649817e84c486e701508f191c949 (diff)
Move keyboard logic to wlr_{keyboard,seat}
Diffstat (limited to 'backend/libinput/keyboard.c')
-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 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);
}