wlr_seat: send keyboard modifiers to the right client on enter

We were previously sending modifiers to the leaving client instead.
Fixes #476.
This commit is contained in:
Dominique Martinet 2017-12-10 08:06:43 +01:00
parent b1b1533d94
commit 542d886984
1 changed files with 6 additions and 1 deletions

View File

@ -860,7 +860,6 @@ void wlr_seat_keyboard_enter(struct wlr_seat *seat,
surface->resource, &keys);
wl_array_release(&keys);
wlr_seat_keyboard_send_modifiers(seat);
wlr_seat_client_send_selection(client);
}
@ -882,6 +881,12 @@ void wlr_seat_keyboard_enter(struct wlr_seat *seat,
seat->keyboard_state.focused_client = client;
seat->keyboard_state.focused_surface = surface;
if (client && client->keyboard && seat->keyboard_state.keyboard) {
// tell new client about any modifier change last,
// as it targets seat->keyboard_state.focused_client
wlr_seat_keyboard_send_modifiers(seat);
}
}
void wlr_seat_keyboard_notify_enter(struct wlr_seat *seat, struct