diff options
Diffstat (limited to 'glow/src/widget/pane_grid.rs')
-rw-r--r-- | glow/src/widget/pane_grid.rs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/glow/src/widget/pane_grid.rs b/glow/src/widget/pane_grid.rs index f594473f..69229927 100644 --- a/glow/src/widget/pane_grid.rs +++ b/glow/src/widget/pane_grid.rs @@ -7,7 +7,6 @@ //! drag and drop, and hotkey support. //! //! [`pane_grid` example]: https://github.com/hecrj/iced/tree/0.1/examples/pane_grid -//! [`PaneGrid`]: type.PaneGrid.html use crate::Renderer; pub use iced_native::pane_grid::{ @@ -24,13 +23,9 @@ pub use iced_native::pane_grid::{ pub type PaneGrid<'a, Message> = iced_native::PaneGrid<'a, Message, Renderer>; /// The content of a [`Pane`]. -/// -/// [`Pane`]: struct.Pane.html pub type Content<'a, Message> = iced_native::pane_grid::Content<'a, Message, Renderer>; /// The title bar of a [`Pane`]. -/// -/// [`Pane`]: struct.Pane.html pub type TitleBar<'a, Message> = iced_native::pane_grid::TitleBar<'a, Message, Renderer>; |