diff options
author | 2021-02-23 03:18:47 +0100 | |
---|---|---|
committer | 2021-02-23 03:18:47 +0100 | |
commit | 9d4996cbab012559c73852145b9968f6b101663a (patch) | |
tree | e2b6b984deac566bbe4eabe4482eb2ebe39f91c0 /glow/src/widget/tooltip.rs | |
parent | 2f766b73413fe60cd881e139fa0e84a0f0134d91 (diff) | |
download | iced-9d4996cbab012559c73852145b9968f6b101663a.tar.gz iced-9d4996cbab012559c73852145b9968f6b101663a.tar.bz2 iced-9d4996cbab012559c73852145b9968f6b101663a.zip |
Export `Tooltip` in `iced_glow`
Diffstat (limited to '')
-rw-r--r-- | glow/src/widget/tooltip.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/glow/src/widget/tooltip.rs b/glow/src/widget/tooltip.rs new file mode 100644 index 00000000..89ab3a15 --- /dev/null +++ b/glow/src/widget/tooltip.rs @@ -0,0 +1,6 @@ +//! Display a widget over another. +/// A widget allowing the selection of a single value from a list of options. +pub type Tooltip<'a, Message> = + iced_native::Tooltip<'a, Message, crate::Renderer>; + +pub use iced_native::tooltip::Position; |