diff options
author | 2020-11-25 05:31:45 +0100 | |
---|---|---|
committer | 2020-11-26 02:05:42 +0100 | |
commit | d612bf56784b41346f18ad9eda4f6d54d699dcb5 (patch) | |
tree | 091cc60b513067cc1d3c8254ed1bcd3072b8410e /core/src/keyboard.rs | |
parent | 08e0b9ffbd931928ad10c0147b84c09ce083276d (diff) | |
download | iced-d612bf56784b41346f18ad9eda4f6d54d699dcb5.tar.gz iced-d612bf56784b41346f18ad9eda4f6d54d699dcb5.tar.bz2 iced-d612bf56784b41346f18ad9eda4f6d54d699dcb5.zip |
Rename `keyboard::ModifiersState` to `Modifiers`
Diffstat (limited to 'core/src/keyboard.rs')
-rw-r--r-- | core/src/keyboard.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/keyboard.rs b/core/src/keyboard.rs index b26bdb3d..61e017ad 100644 --- a/core/src/keyboard.rs +++ b/core/src/keyboard.rs @@ -1,8 +1,8 @@ //! Reuse basic keyboard types. mod event; mod key_code; -mod modifiers_state; +mod modifiers; pub use event::Event; pub use key_code::KeyCode; -pub use modifiers_state::ModifiersState; +pub use modifiers::Modifiers; |