diff options
| author | llyyr <llyyr.public@gmail.com> | 2024-09-08 17:28:34 +0530 |
|---|---|---|
| committer | Simon Ser <contact@emersion.fr> | 2024-09-08 14:18:01 +0200 |
| commit | c5ba7f23a50cd43d39fbb45274484abbcaa4e157 (patch) | |
| tree | e82e9dbb3a1d47ed5b19e4019429710f56602157 | |
| parent | f4a6b0395f3fe38cb14bec1f5ac30445496e525c (diff) | |
sway/input/keyboard: always set active keyboard if there is none
Previously, we incorrectly only set active keyboard for non-virtual
devices. 4c3c0602116c12c2821e1e505e7248b3c642b4ca incorrectly put
unrelated code in `sway_keyboard_set_layout`.
Fixes: 4c3c0602116c12c2821e1e505e7248b3c642b4ca
| -rw-r--r-- | sway/input/keyboard.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sway/input/keyboard.c b/sway/input/keyboard.c index efb9ac39..1a73df01 100644 --- a/sway/input/keyboard.c +++ b/sway/input/keyboard.c @@ -1028,13 +1028,6 @@ static void sway_keyboard_set_layout(struct sway_keyboard *keyboard, } } - // If the seat has no active keyboard, set this one - struct wlr_seat *seat = keyboard->seat_device->sway_seat->wlr_seat; - struct wlr_keyboard *current_keyboard = seat->keyboard_state.keyboard; - if (current_keyboard == NULL) { - wlr_seat_set_keyboard(seat, keyboard->wlr); - } - if (keymap_changed) { ipc_event_input("xkb_keymap", keyboard->seat_device->input_device); @@ -1078,6 +1071,13 @@ void sway_keyboard_configure(struct sway_keyboard *keyboard) { sway_keyboard_set_layout(keyboard, input_config); } + // If the seat has no active keyboard, set this one + struct wlr_seat *seat = keyboard->seat_device->sway_seat->wlr_seat; + struct wlr_keyboard *current_keyboard = seat->keyboard_state.keyboard; + if (current_keyboard == NULL) { + wlr_seat_set_keyboard(seat, keyboard->wlr); + } + wl_list_remove(&keyboard->keyboard_key.link); wl_signal_add(&keyboard->wlr->events.key, &keyboard->keyboard_key); keyboard->keyboard_key.notify = handle_keyboard_key; |
