2020-07-28 18:07:46 +03:00
|
|
|
//! Decorate content and apply alignment.
|
2021-10-14 16:07:22 +07:00
|
|
|
use crate::Renderer;
|
2020-07-28 18:07:46 +03:00
|
|
|
|
|
|
|
|
/// An element decorating some content.
|
|
|
|
|
///
|
|
|
|
|
/// This is an alias of an `iced_native` tooltip with a default
|
|
|
|
|
/// `Renderer`.
|
|
|
|
|
pub type Tooltip<'a, Message, Backend> =
|
|
|
|
|
iced_native::Tooltip<'a, Message, Renderer<Backend>>;
|
|
|
|
|
|
2021-02-23 03:09:16 +01:00
|
|
|
pub use iced_native::tooltip::Position;
|