iced/glow/src/widget/tooltip.rs
2021-02-23 03:18:47 +01:00

6 lines
242 B
Rust

//! 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;