The current implementation has some important issues on Windows. We will reintroduce the feature once we figure them out! I have kept some of the changes in #945, like the new `keyboard::Modifiers` powered by `bitflags`.
8 lines
151 B
Rust
8 lines
151 B
Rust
//! Listen to keyboard events.
|
|
mod event;
|
|
mod key_code;
|
|
mod modifiers;
|
|
|
|
pub use event::Event;
|
|
pub use key_code::KeyCode;
|
|
pub use modifiers::Modifiers;
|