summaryrefslogtreecommitdiffstats
path: root/native/src/widget/checkbox.rs
diff options
context:
space:
mode:
Diffstat (limited to 'native/src/widget/checkbox.rs')
-rw-r--r--native/src/widget/checkbox.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/native/src/widget/checkbox.rs b/native/src/widget/checkbox.rs
index 482e379f..d611993f 100644
--- a/native/src/widget/checkbox.rs
+++ b/native/src/widget/checkbox.rs
@@ -205,8 +205,8 @@ where
}
fn hash_layout(&self, state: &mut Hasher) {
- struct CheckboxWidget;
- std::any::TypeId::of::<CheckboxWidget>().hash(state);
+ struct Marker;
+ std::any::TypeId::of::<Marker>().hash(state);
self.label.hash(state);
}