Don't permanently hold "BaskSlash"
All checks were successful
Rust / build (push) Successful in 1m21s

This commit is contained in:
tommy 2024-10-20 13:18:15 -04:00
parent 33ac041121
commit 11d0001624
Signed by: tommy
GPG Key ID: 56B522AB2EF2263A

View File

@ -38,6 +38,7 @@ fn main() {
} else { } else {
send(EventType::ButtonRelease(rdev::Button::Left)); send(EventType::ButtonRelease(rdev::Button::Left));
send(EventType::KeyPress(rdev::Key::BackSlash)); send(EventType::KeyPress(rdev::Key::BackSlash));
send(EventType::KeyRelease(rdev::Key::BackSlash));
matched = true; matched = true;
} }
}, },