Revert "only call wlr_seat_keyboard_notify_enter() if a keyboard is found"

This reverts commit 8e03bce621.
fixes #270
このコミットが含まれているのは:
Leonardo Hernández Hernández 2022-07-19 11:52:15 -05:00
コミット c70db2d06a
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: E538897EE11B9624
1個のファイルの変更4行の追加0行の削除

4
dwl.c
ファイルの表示

@ -613,6 +613,8 @@ arrangelayers(Monitor *m)
if (kb)
wlr_seat_keyboard_notify_enter(seat, layersurface->layer_surface->surface,
kb->keycodes, kb->num_keycodes, &kb->modifiers);
else
wlr_seat_keyboard_notify_enter(seat, layersurface->layer_surface->surface, NULL, 0, NULL);
return;
}
}
@ -1183,6 +1185,8 @@ focusclient(Client *c, int lift)
if (kb)
wlr_seat_keyboard_notify_enter(seat, client_surface(c),
kb->keycodes, kb->num_keycodes, &kb->modifiers);
else
wlr_seat_keyboard_notify_enter(seat, client_surface(c), NULL, 0, NULL);
/* Activate the new client */
client_activate_surface(client_surface(c), 1);