summaryrefslogtreecommitdiffstats
path: root/pure/src/widget.rs
diff options
context:
space:
mode:
authorLibravatar Casper Rogild Storm <2248455+casperstorm@users.noreply.github.com>2022-04-22 13:35:53 +0200
committerLibravatar Casper Rogild Storm <2248455+casperstorm@users.noreply.github.com>2022-04-22 13:35:53 +0200
commit5d67f9988c14adfca4a7e67dc7a9ddcd860b1c78 (patch)
treed77b70b0fe30a023c60a7215840307246aee6197 /pure/src/widget.rs
parenta33e320521fa0f08704bcea541ca337d0f45449e (diff)
downloadiced-5d67f9988c14adfca4a7e67dc7a9ddcd860b1c78.tar.gz
iced-5d67f9988c14adfca4a7e67dc7a9ddcd860b1c78.tar.bz2
iced-5d67f9988c14adfca4a7e67dc7a9ddcd860b1c78.zip
Implemented Tooltip as Pure
Diffstat (limited to 'pure/src/widget.rs')
-rw-r--r--pure/src/widget.rs2
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};