summaryrefslogtreecommitdiffstats
path: root/glow/src/widget/tooltip.rs
blob: c6af39038b3c26a2f096da83c359cbbdd5f4923c (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::widget::Tooltip<'a, Message, crate::Renderer>;

pub use iced_native::widget::tooltip::Position;