mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-11 04:27:49 -05:00
input: input_repeat() takes a 'struct wayland' pointer
This commit is contained in:
parent
9f0b1f94c2
commit
8c534d0520
3 changed files with 10 additions and 10 deletions
4
input.c
4
input.c
|
|
@ -376,9 +376,9 @@ const struct wl_keyboard_listener keyboard_listener = {
|
|||
};
|
||||
|
||||
void
|
||||
input_repeat(struct terminal *term, uint32_t key)
|
||||
input_repeat(struct wayland *wayl, uint32_t key)
|
||||
{
|
||||
keyboard_key(&term->wl, NULL, 0, 0, key, XKB_KEY_DOWN);
|
||||
keyboard_key(wayl, NULL, 0, 0, key, XKB_KEY_DOWN);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue