diff options
author | 2020-05-12 10:09:30 +0200 | |
---|---|---|
committer | 2020-05-22 21:56:50 +0200 | |
commit | 2ab7341fa50865d6f0c26da59f945321ef839c5f (patch) | |
tree | 10dfdfee1f3ff0c02a3137f3f7f2a15f9c50fa28 /wgpu | |
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 '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 54438f5c..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, Node, 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 |