summaryrefslogtreecommitdiffstats
path: root/glow/src/widget/tooltip.rs
blob: 89ab3a15a389c1453bf89f0aff96bfcac58f04b4 (plain) (blame)
1
2
3
4
5
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;