summaryrefslogtreecommitdiffstats
path: root/pure/src/widget/container.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-03-16 17:37:19 +0700
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-03-16 17:37:19 +0700
commitd7100fd2597da82d97eaf196d50573ea64f3f8ff (patch)
tree4a7fcc2e223ed207fd4cb2dd92a1de3393846d5f /pure/src/widget/container.rs
parentcdd906f563de21dd904bf5b78589d8a999b46931 (diff)
downloadiced-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 'pure/src/widget/container.rs')
-rw-r--r--pure/src/widget/container.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/pure/src/widget/container.rs b/pure/src/widget/container.rs
index ebf69cab..91db1f3f 100644
--- a/pure/src/widget/container.rs
+++ b/pure/src/widget/container.rs
@@ -1,5 +1,6 @@
//! Decorate content and apply alignment.
-use crate::{Element, Tree, Widget};
+use crate::widget::Tree;
+use crate::{Element, Widget};
use iced_native::alignment;
use iced_native::event::{self, Event};