diff options
author | Devin J. Pohly <djpohly@gmail.com> | 2021-02-16 13:09:00 -0600 |
---|---|---|
committer | Devin J. Pohly <djpohly@gmail.com> | 2021-02-16 13:09:00 -0600 |
commit | a11f2bbc7a4068321767bd7e8c7eee1aee278bc9 (patch) | |
tree | 6217dcd657ce2b55e4d2800c8fc986ddb1d50816 | |
parent | 8ed88822ca4448b06c2d7e6155d8022152b78017 (diff) |
Revert "fix undeclared WLR_KEY_PRESSED"
This reverts commit 67896e9d8b98f679faf4456e26e82057c1884789.
-rw-r--r-- | dwl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1284,7 +1284,7 @@ keypress(struct wl_listener *listener, void *data) wlr_idle_notify_activity(idle, seat); /* On _press_, attempt to process a compositor keybinding. */ - if (event->state == WL_KEYBOARD_KEY_STATE_PRESSED) + if (event->state == WLR_KEY_PRESSED) for (i = 0; i < nsyms; i++) handled = keybinding(mods, syms[i]) || handled; |