diff options
author | Isaac Freund <[email protected]> | 2020-10-21 17:21:23 +0200 |
---|---|---|
committer | Simon Ser <[email protected]> | 2020-11-11 10:58:38 +0100 |
commit | de19cd7c75993e4ef8bdd8ca8ac0d6b1a46a52e9 (patch) | |
tree | b22ac1cb96c3d4dd9afff769bc82c9ea83d38617 | |
parent | 3cd164925b6d5ee15d1245bf1ef2afd7f356eeac (diff) |
Replace wlr_key_state with wl_keyboard_key_state
There's no reason to have duplicate enums
-rw-r--r-- | tinywl.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -197,7 +197,7 @@ static void keyboard_handle_key( bool handled = false; uint32_t modifiers = wlr_keyboard_get_modifiers(keyboard->device->keyboard); - if ((modifiers & WLR_MODIFIER_ALT) && event->state == WLR_KEY_PRESSED) { + if ((modifiers & WLR_MODIFIER_ALT) && event->state == WL_KEYBOARD_KEY_STATE_PRESSED) { /* If alt is held down and this button was _pressed_, we attempt to * process it as a compositor keybinding. */ for (int i = 0; i < nsyms; i++) { @@ -374,7 +374,7 @@ static void process_cursor_resize(struct tinywl_server *server, uint32_t time) { int new_left = server->grab_geobox.x; int new_right = server->grab_geobox.x + server->grab_geobox.width; int new_top = server->grab_geobox.y; - int new_bottom = server->grab_geobox.y + server->grab_geobox.height; + int new_bottom = server->grab_geobox.y + server->grab_geobox.height; if (server->resize_edges & WLR_EDGE_TOP) { new_top = border_y; |