diff options
author | 2022-04-25 14:45:38 +0700 | |
---|---|---|
committer | 2022-04-25 14:45:38 +0700 | |
commit | bba4cf323b711fe9a962c84d1a14875a0e394396 (patch) | |
tree | 907ecff27b386d755887f62b9ac00700c541ca7e /pure/src/widget.rs | |
parent | a33e320521fa0f08704bcea541ca337d0f45449e (diff) | |
parent | e33f43af31888b8b0795c2287aed9f26b4e1d699 (diff) | |
download | iced-bba4cf323b711fe9a962c84d1a14875a0e394396.tar.gz iced-bba4cf323b711fe9a962c84d1a14875a0e394396.tar.bz2 iced-bba4cf323b711fe9a962c84d1a14875a0e394396.zip |
Merge pull request #1315 from casperstorm/pure/tooltip
Implemented Tooltip as Pure
Diffstat (limited to '')
-rw-r--r-- | pure/src/widget.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pure/src/widget.rs b/pure/src/widget.rs index 8200f9a7..adce17ea 100644 --- a/pure/src/widget.rs +++ b/pure/src/widget.rs @@ -12,6 +12,7 @@ pub mod slider; pub mod svg; pub mod text_input; pub mod toggler; +pub mod tooltip; pub mod tree; mod column; @@ -37,6 +38,7 @@ pub use svg::Svg; pub use text::Text; pub use text_input::TextInput; pub use toggler::Toggler; +pub use tooltip::{Position, Tooltip}; pub use tree::Tree; use iced_native::event::{self, Event}; |