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

7 lines
258 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::widget::Tooltip<'a, Message, crate::Renderer>;
2020-07-28 18:07:46 +03:00
pub use iced_native::widget::tooltip::Position;