diff options
author | 2020-11-10 22:57:19 +0100 | |
---|---|---|
committer | 2020-11-10 22:57:19 +0100 | |
commit | 2f5a3dacd933a52931a1bb169138d52402413956 (patch) | |
tree | 65995b4304543ea6a6400af3c8e11eae630dd22b /graphics/src | |
parent | d0402d072d3f4e128c55fc0a6184c5f7c712bb20 (diff) | |
parent | 86fa12229e7117306b8297a09aa22c99802600c8 (diff) | |
download | iced-2f5a3dacd933a52931a1bb169138d52402413956.tar.gz iced-2f5a3dacd933a52931a1bb169138d52402413956.tar.bz2 iced-2f5a3dacd933a52931a1bb169138d52402413956.zip |
Merge pull request #608 from hecrj/remove-pane-grid-focus
Improve flexibility of `PaneGrid`
Diffstat (limited to 'graphics/src')
-rw-r--r-- | graphics/src/widget/pane_grid.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/src/widget/pane_grid.rs b/graphics/src/widget/pane_grid.rs index 5b0eb391..1bc01c03 100644 --- a/graphics/src/widget/pane_grid.rs +++ b/graphics/src/widget/pane_grid.rs @@ -20,8 +20,8 @@ use iced_native::{ }; pub use iced_native::pane_grid::{ - Axis, Configuration, Content, Direction, DragEvent, Focus, KeyPressEvent, - Pane, ResizeEvent, Split, State, TitleBar, + Axis, Configuration, Content, Direction, DragEvent, Focus, Pane, + ResizeEvent, Split, State, TitleBar, }; /// A collection of panes distributed using either vertical or horizontal splits |