summaryrefslogtreecommitdiffstats
path: root/pure/src/widget.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2022-04-25 14:45:38 +0700
committerLibravatar GitHub <noreply@github.com>2022-04-25 14:45:38 +0700
commitbba4cf323b711fe9a962c84d1a14875a0e394396 (patch)
tree907ecff27b386d755887f62b9ac00700c541ca7e /pure/src/widget.rs
parenta33e320521fa0f08704bcea541ca337d0f45449e (diff)
parente33f43af31888b8b0795c2287aed9f26b4e1d699 (diff)
downloadiced-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.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};