diff options
author | 2021-02-24 01:42:08 +0100 | |
---|---|---|
committer | 2021-02-24 01:42:08 +0100 | |
commit | a5fddf9ee648927b294ef34e8819855d5e117b26 (patch) | |
tree | 96f5454cdb07249beefdb0b804de3b10f5ff6cb6 /native/src/widget.rs | |
parent | 6759a5c56fc53286d77698ac9a86812b6d7b03ff (diff) | |
parent | 2736e4ca35f17a92768f0be682acf6da3b574cb6 (diff) | |
download | iced-a5fddf9ee648927b294ef34e8819855d5e117b26.tar.gz iced-a5fddf9ee648927b294ef34e8819855d5e117b26.tar.bz2 iced-a5fddf9ee648927b294ef34e8819855d5e117b26.zip |
Merge pull request #465 from yusdacra/tooltip-widget
Tooltip widget
Diffstat (limited to '')
-rw-r--r-- | native/src/widget.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/native/src/widget.rs b/native/src/widget.rs index 3677713a..d5c353df 100644 --- a/native/src/widget.rs +++ b/native/src/widget.rs @@ -36,6 +36,7 @@ pub mod space; pub mod svg; pub mod text; pub mod text_input; +pub mod tooltip; #[doc(no_inline)] pub use button::Button; @@ -71,6 +72,8 @@ pub use svg::Svg; pub use text::Text; #[doc(no_inline)] pub use text_input::TextInput; +#[doc(no_inline)] +pub use tooltip::Tooltip; use crate::event::{self, Event}; use crate::layout; |