diff options
author | 2020-03-17 07:28:28 +0100 | |
---|---|---|
committer | 2020-03-17 07:30:05 +0100 | |
commit | 05beb878527b4d4e3141ca5ba09337d6ada858be (patch) | |
tree | d95ab2be4be002618eb054c61007b2ab661cd164 /web/src/lib.rs | |
parent | 1cd1582506810255394d2f9019597e9252bd8daa (diff) | |
download | iced-05beb878527b4d4e3141ca5ba09337d6ada858be.tar.gz iced-05beb878527b4d4e3141ca5ba09337d6ada858be.tar.bz2 iced-05beb878527b4d4e3141ca5ba09337d6ada858be.zip |
Move common keyboard types to `iced_core`
Also expose them in `iced` through `iced_native` and `iced_web`.
Diffstat (limited to 'web/src/lib.rs')
-rw-r--r-- | web/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/src/lib.rs b/web/src/lib.rs index 258ad9e7..1de00545 100644 --- a/web/src/lib.rs +++ b/web/src/lib.rs @@ -73,8 +73,8 @@ pub use dodrio; pub use element::Element; pub use hasher::Hasher; pub use iced_core::{ - Align, Background, Color, Font, HorizontalAlignment, Length, Point, Size, - Vector, VerticalAlignment, + keyboard, Align, Background, Color, Font, HorizontalAlignment, Length, + Point, Size, Vector, VerticalAlignment, }; pub use iced_futures::{executor, futures, Command}; pub use subscription::Subscription; |