1
0
Fork 0
forked from wry/wry

seat: implement key repeat

This commit is contained in:
Julian Orth 2025-10-16 21:18:26 +02:00
parent 0e1be7544f
commit 4b4f05d153
10 changed files with 153 additions and 19 deletions

View file

@ -59,6 +59,7 @@ impl EiKeyboard {
state: match state {
KeyState::Released => 0,
KeyState::Pressed => 1,
KeyState::Repeated => return,
},
});
}