diff options
Diffstat (limited to 'pure/src/widget/checkbox.rs')
-rw-r--r-- | pure/src/widget/checkbox.rs | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/pure/src/widget/checkbox.rs b/pure/src/widget/checkbox.rs index 8aa4e845..3448e616 100644 --- a/pure/src/widget/checkbox.rs +++ b/pure/src/widget/checkbox.rs @@ -5,7 +5,7 @@ use iced_native::layout::{self, Layout}; use iced_native::mouse; use iced_native::renderer; use iced_native::text; -use iced_native::{Clipboard, Hasher, Length, Point, Rectangle, Shell}; +use iced_native::{Clipboard, Length, Point, Rectangle, Shell}; pub use iced_native::widget::Checkbox; @@ -88,12 +88,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>> |