From 2ab7341fa50865d6f0c26da59f945321ef839c5f Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Tue, 12 May 2020 10:09:30 +0200 Subject: Implement `State::with_content` in `pane_grid` --- native/src/widget/pane_grid.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'native/src/widget/pane_grid.rs') diff --git a/native/src/widget/pane_grid.rs b/native/src/widget/pane_grid.rs index 4c0eeed2..076ae76f 100644 --- a/native/src/widget/pane_grid.rs +++ b/native/src/widget/pane_grid.rs @@ -9,6 +9,7 @@ //! [`pane_grid` example]: https://github.com/hecrj/iced/tree/0.1/examples/pane_grid //! [`PaneGrid`]: struct.PaneGrid.html mod axis; +mod content; mod direction; mod node; mod pane; @@ -16,6 +17,7 @@ mod split; mod state; pub use axis::Axis; +pub use content::Content; pub use direction::Direction; pub use node::Node; pub use pane::Pane; -- cgit