diff options
author | 2021-07-12 21:44:01 +0200 | |
---|---|---|
committer | 2021-07-12 21:44:01 +0200 | |
commit | 735cfb790813c44852612400e31c0190b9c641a6 (patch) | |
tree | 4b33019dc01fd8afbe3d79431660788961262dcd /native/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 'native/src/lib.rs')
-rw-r--r-- | native/src/lib.rs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/native/src/lib.rs b/native/src/lib.rs index 564f2514..cbb02506 100644 --- a/native/src/lib.rs +++ b/native/src/lib.rs @@ -37,7 +37,6 @@ pub mod clipboard; pub mod event; pub mod keyboard; pub mod layout; -pub mod menu; pub mod mouse; pub mod overlay; pub mod program; @@ -62,8 +61,8 @@ mod debug; mod debug; pub use iced_core::{ - Align, Background, Color, Font, HorizontalAlignment, Length, Padding, - Point, Rectangle, Size, Vector, VerticalAlignment, + menu, Align, Background, Color, Font, HorizontalAlignment, Length, Menu, + Padding, Point, Rectangle, Size, Vector, VerticalAlignment, }; pub use iced_futures::{executor, futures, Command}; @@ -76,7 +75,6 @@ pub use element::Element; pub use event::Event; pub use hasher::Hasher; pub use layout::Layout; -pub use menu::Menu; pub use overlay::Overlay; pub use program::Program; pub use renderer::Renderer; |