diff options
author | 2020-05-25 20:34:10 +0200 | |
---|---|---|
committer | 2020-05-25 20:34:10 +0200 | |
commit | 5324eb10242a7dd33f5271dc6fc9eeb09eb2cb50 (patch) | |
tree | 55ba66173ef8b5c34784945609daf5b6dc77d6aa /wgpu | |
parent | 33448508a524db6447b380cc236be6f0d5ca8a86 (diff) | |
parent | 230bd6f7475752352ca9985802db0633e3508d9f (diff) | |
download | iced-5324eb10242a7dd33f5271dc6fc9eeb09eb2cb50.tar.gz iced-5324eb10242a7dd33f5271dc6fc9eeb09eb2cb50.tar.bz2 iced-5324eb10242a7dd33f5271dc6fc9eeb09eb2cb50.zip |
Merge pull request #358 from hecrj/improvement/pane-grid-ergonomics
Implement `State::layout` and `State::with_content` in `pane_grid`
Diffstat (limited to 'wgpu')
-rw-r--r-- | wgpu/src/widget/pane_grid.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wgpu/src/widget/pane_grid.rs b/wgpu/src/widget/pane_grid.rs index 578e8960..6f437df7 100644 --- a/wgpu/src/widget/pane_grid.rs +++ b/wgpu/src/widget/pane_grid.rs @@ -11,8 +11,8 @@ use crate::Renderer; pub use iced_native::pane_grid::{ - Axis, Direction, DragEvent, Focus, KeyPressEvent, Pane, ResizeEvent, Split, - State, + Axis, Content, Direction, DragEvent, Focus, KeyPressEvent, Node, Pane, + ResizeEvent, Split, State, }; /// A collection of panes distributed using either vertical or horizontal splits |