diff options
author | Richard Ipsum <richardipsum@vx21.xyz> | 2020-11-23 16:58:43 +0000 |
---|---|---|
committer | Richard Ipsum <richardipsum@vx21.xyz> | 2020-11-23 16:58:43 +0000 |
commit | 67896e9d8b98f679faf4456e26e82057c1884789 (patch) | |
tree | 62eb40a5c2fccf9c869229ae14e1cd8f76a13049 | |
parent | 44ef698d6ef48a41b0df7c4c47d8b880efdbdf33 (diff) |
fix undeclared WLR_KEY_PRESSED
-rw-r--r-- | dwl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -856,7 +856,7 @@ keypress(struct wl_listener *listener, void *data) int handled = 0; uint32_t mods = wlr_keyboard_get_modifiers(kb->device->keyboard); /* On _press_, attempt to process a compositor keybinding. */ - if (event->state == WLR_KEY_PRESSED) + if (event->state == WL_KEYBOARD_KEY_STATE_PRESSED) for (i = 0; i < nsyms; i++) handled = keybinding(mods, syms[i]) || handled; |