diff options
author | emersion <[email protected]> | 2018-10-20 08:42:56 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2018-10-20 08:42:56 +0200 |
commit | 75ea19c71b08e4b3dd1ad053944724fd91dc04bd (patch) | |
tree | 734b3ad6e6ef44d62ac6bbb1162a8bbb2ca28ae4 /sway/input/keyboard.c | |
parent | fe6aea1d02db7e172cafdaac61d612d0de2dc9d0 (diff) | |
parent | c006717910e5f30ca65645f701541dfa176c1392 (diff) |
Merge pull request #2870 from RyanDwyer/refactor-input-manager
Minor refactor of input manager
Diffstat (limited to 'sway/input/keyboard.c')
-rw-r--r-- | sway/input/keyboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/input/keyboard.c b/sway/input/keyboard.c index 4427dabe..5c1e7ae6 100644 --- a/sway/input/keyboard.c +++ b/sway/input/keyboard.c @@ -211,7 +211,7 @@ static void handle_keyboard_key(struct wl_listener *listener, void *data) { struct wlr_input_device *wlr_device = keyboard->seat_device->input_device->wlr_device; char *device_identifier = input_device_get_identifier(wlr_device); - wlr_idle_notify_activity(seat->input->server->idle, wlr_seat); + wlr_idle_notify_activity(server.idle, wlr_seat); struct wlr_event_keyboard_key *event = data; bool input_inhibited = seat->exclusive_client != NULL; |