iced/core/src/keyboard.rs
Héctor Ramón Jiménez c0ab988842
Revert system menus support
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`.
2021-09-15 15:31:40 +07:00

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;