summaryrefslogtreecommitdiffstats
path: root/pure/src/widget/space.rs
diff options
context:
space:
mode:
Diffstat (limited to 'pure/src/widget/space.rs')
-rw-r--r--pure/src/widget/space.rs8
1 files changed, 1 insertions, 7 deletions
diff --git a/pure/src/widget/space.rs b/pure/src/widget/space.rs
index e0c9c285..c04d962a 100644
--- a/pure/src/widget/space.rs
+++ b/pure/src/widget/space.rs
@@ -4,7 +4,7 @@ use iced_native::event::{self, Event};
use iced_native::layout::{self, Layout};
use iced_native::mouse;
use iced_native::renderer;
-use iced_native::{Clipboard, Hasher, Length, Point, Rectangle, Shell};
+use iced_native::{Clipboard, Length, Point, Rectangle, Shell};
pub use iced_native::widget::Space;
@@ -86,12 +86,6 @@ where
renderer,
)
}
-
- fn hash_layout(&self, state: &mut Hasher) {
- <Self as iced_native::Widget<Message, Renderer>>::hash_layout(
- self, state,
- )
- }
}
impl<'a, Message, Renderer> Into<Element<'a, Message, Renderer>> for Space