diff options
author | 2022-03-16 17:37:19 +0700 | |
---|---|---|
committer | 2022-03-16 17:37:19 +0700 | |
commit | d7100fd2597da82d97eaf196d50573ea64f3f8ff (patch) | |
tree | 4a7fcc2e223ed207fd4cb2dd92a1de3393846d5f /examples/pure/pane_grid/src | |
parent | cdd906f563de21dd904bf5b78589d8a999b46931 (diff) | |
download | iced-d7100fd2597da82d97eaf196d50573ea64f3f8ff.tar.gz iced-d7100fd2597da82d97eaf196d50573ea64f3f8ff.tar.bz2 iced-d7100fd2597da82d97eaf196d50573ea64f3f8ff.zip |
Export widget modules in `iced_pure`
... and fix collisions with the new `helpers`
Diffstat (limited to 'examples/pure/pane_grid/src')
-rw-r--r-- | examples/pure/pane_grid/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/pure/pane_grid/src/main.rs b/examples/pure/pane_grid/src/main.rs index 6a733023..65516956 100644 --- a/examples/pure/pane_grid/src/main.rs +++ b/examples/pure/pane_grid/src/main.rs @@ -1,7 +1,7 @@ use iced::alignment::{self, Alignment}; use iced::executor; use iced::keyboard; -use iced::pure::pane_grid::{self, PaneGrid}; +use iced::pure::widget::pane_grid::{self, PaneGrid}; use iced::pure::{button, column, container, row, scrollable, text}; use iced::pure::{Application, Element}; use iced::{Color, Command, Length, Settings, Size, Subscription}; |