iced-yoda/wgpu/src/widget/tooltip.rs

7 lines
242 B
Rust
Raw Normal View History

2020-07-28 18:07:46 +03:00
//! 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;