mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-29 05:40:12 -04:00
Replace wlr_key_state with wl_keyboard_key_state
There's no reason to have duplicate enums
This commit is contained in:
parent
238d1c078f
commit
7693f61d81
9 changed files with 26 additions and 28 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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue