diff options
Diffstat (limited to 'native/src/widget')
-rw-r--r-- | native/src/widget/container.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/native/src/widget/container.rs b/native/src/widget/container.rs index bb78a68c..c616db2a 100644 --- a/native/src/widget/container.rs +++ b/native/src/widget/container.rs @@ -1,8 +1,6 @@ use std::hash::Hash; -use crate::{ - layout, Element, Event, Hasher, Layout, Length, Point, Size, Widget, -}; +use crate::{layout, Element, Event, Hasher, Layout, Length, Point, Widget}; /// A container that distributes its contents vertically. pub type Container<'a, Message, Renderer> = @@ -73,7 +71,6 @@ where self.height.hash(state); self.max_width.hash(state); self.max_height.hash(state); - self.padding.hash(state); self.content.hash_layout(state); } |