diff options
author | 2020-05-12 10:09:30 +0200 | |
---|---|---|
committer | 2020-05-22 21:56:50 +0200 | |
commit | 2ab7341fa50865d6f0c26da59f945321ef839c5f (patch) | |
tree | 10dfdfee1f3ff0c02a3137f3f7f2a15f9c50fa28 /native/src/widget/pane_grid.rs | |
parent | 32b9c1fdbd217c664aae40f5852013e682d480df (diff) | |
download | iced-2ab7341fa50865d6f0c26da59f945321ef839c5f.tar.gz iced-2ab7341fa50865d6f0c26da59f945321ef839c5f.tar.bz2 iced-2ab7341fa50865d6f0c26da59f945321ef839c5f.zip |
Implement `State::with_content` in `pane_grid`
Diffstat (limited to 'native/src/widget/pane_grid.rs')
-rw-r--r-- | native/src/widget/pane_grid.rs | 2 |
1 files changed, 2 insertions, 0 deletions
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; |