diff options
author | 2021-07-12 21:44:01 +0200 | |
---|---|---|
committer | 2021-07-12 21:44:01 +0200 | |
commit | 735cfb790813c44852612400e31c0190b9c641a6 (patch) | |
tree | 4b33019dc01fd8afbe3d79431660788961262dcd /core/src/lib.rs | |
parent | 1428e9180ae9f4edbf22514bb74c5c7e9df9c712 (diff) | |
download | iced-735cfb790813c44852612400e31c0190b9c641a6.tar.gz iced-735cfb790813c44852612400e31c0190b9c641a6.tar.bz2 iced-735cfb790813c44852612400e31c0190b9c641a6.zip |
Move `menu` module from `iced_native` to `iced_core`
Diffstat (limited to 'core/src/lib.rs')
-rw-r--r-- | core/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/src/lib.rs b/core/src/lib.rs index 6453d599..c4288158 100644 --- a/core/src/lib.rs +++ b/core/src/lib.rs @@ -15,6 +15,7 @@ #![forbid(unsafe_code)] #![forbid(rust_2018_idioms)] pub mod keyboard; +pub mod menu; pub mod mouse; mod align; @@ -33,6 +34,7 @@ pub use background::Background; pub use color::Color; pub use font::Font; pub use length::Length; +pub use menu::Menu; pub use padding::Padding; pub use point::Point; pub use rectangle::Rectangle; |