diff options
author | 2020-11-17 06:13:56 +0100 | |
---|---|---|
committer | 2020-11-17 06:13:56 +0100 | |
commit | c03d46719ef79a796e03dab394248a55d92e0fbd (patch) | |
tree | 724fdd1df8631bf46aec7022e8d821d073d4cdd5 /glow | |
parent | df712f9ccfddebafdc7a7f97953f7249176d28e7 (diff) | |
download | iced-c03d46719ef79a796e03dab394248a55d92e0fbd.tar.gz iced-c03d46719ef79a796e03dab394248a55d92e0fbd.tar.bz2 iced-c03d46719ef79a796e03dab394248a55d92e0fbd.zip |
Remove `Focus` in `pane_grid`
Since #608, the `PaneGrid` widget does not handle pane focus.
Diffstat (limited to 'glow')
-rw-r--r-- | glow/src/widget/pane_grid.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/glow/src/widget/pane_grid.rs b/glow/src/widget/pane_grid.rs index 9e6d27d0..f594473f 100644 --- a/glow/src/widget/pane_grid.rs +++ b/glow/src/widget/pane_grid.rs @@ -11,8 +11,8 @@ use crate::Renderer; pub use iced_native::pane_grid::{ - Axis, Configuration, Direction, DragEvent, Focus, Node, Pane, ResizeEvent, - Split, State, + Axis, Configuration, Direction, DragEvent, Node, Pane, ResizeEvent, Split, + State, }; /// A collection of panes distributed using either vertical or horizontal splits |