diff options
author | 2021-07-20 21:44:33 +0700 | |
---|---|---|
committer | 2021-07-20 21:44:33 +0700 | |
commit | 8e29709b69ec0eae211887c8c6d91558175997b5 (patch) | |
tree | c6fe2b40d4be34867e61b9061d27ae44916ad4ab /native/src/lib.rs | |
parent | a6dbaf0f5fd3590a8cfe92f924184c5d78e00152 (diff) | |
parent | 82db3c78b6cfa2cc55ece6ffa46811bfb5195f60 (diff) | |
download | iced-8e29709b69ec0eae211887c8c6d91558175997b5.tar.gz iced-8e29709b69ec0eae211887c8c6d91558175997b5.tar.bz2 iced-8e29709b69ec0eae211887c8c6d91558175997b5.zip |
Merge pull request #945 from derezzedex/menu
feat: add menus
Diffstat (limited to 'native/src/lib.rs')
-rw-r--r-- | native/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/native/src/lib.rs b/native/src/lib.rs index cd214e36..cbb02506 100644 --- a/native/src/lib.rs +++ b/native/src/lib.rs @@ -61,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}; |