diff options
author | 2020-04-14 12:11:10 +0200 | |
---|---|---|
committer | 2020-07-08 10:34:14 +0200 | |
commit | c901f40fd6c5aa39f4dc056b2b59bc7133b287e6 (patch) | |
tree | ef71165b0c0958e517ccac0e234cbb20aa385afa /native/src/lib.rs | |
parent | 5c4f5ae5ecb36703a95cafb2cd58692529c9466d (diff) | |
download | iced-c901f40fd6c5aa39f4dc056b2b59bc7133b287e6.tar.gz iced-c901f40fd6c5aa39f4dc056b2b59bc7133b287e6.tar.bz2 iced-c901f40fd6c5aa39f4dc056b2b59bc7133b287e6.zip |
Introduce `Widget::overlay` :tada:
Diffstat (limited to 'native/src/lib.rs')
-rw-r--r-- | native/src/lib.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/native/src/lib.rs b/native/src/lib.rs index b67ff2a1..dbec068d 100644 --- a/native/src/lib.rs +++ b/native/src/lib.rs @@ -30,7 +30,7 @@ //! [`Widget`]: widget/trait.Widget.html //! [`UserInterface`]: struct.UserInterface.html //! [renderer]: renderer/index.html -#![deny(missing_docs)] +//#![deny(missing_docs)] #![deny(missing_debug_implementations)] #![deny(unused_results)] #![forbid(unsafe_code)] @@ -48,6 +48,7 @@ mod clipboard; mod element; mod event; mod hasher; +mod overlay; mod runtime; mod user_interface; @@ -75,6 +76,7 @@ pub use element::Element; pub use event::Event; pub use hasher::Hasher; pub use layout::Layout; +pub use overlay::Overlay; pub use program::Program; pub use renderer::Renderer; pub use runtime::Runtime; |