From 41f6a325e9b6c9df18ab2c3bcf386be988f4b4ef Mon Sep 17 00:00:00 2001 From: Olivier Pinon Date: Sun, 12 Apr 2020 01:20:40 +0200 Subject: #288 Renamed XXXWidget to Marker --- native/src/widget/container.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'native/src/widget/container.rs') diff --git a/native/src/widget/container.rs b/native/src/widget/container.rs index 3b661c05..2590fe3b 100644 --- a/native/src/widget/container.rs +++ b/native/src/widget/container.rs @@ -203,8 +203,8 @@ where } fn hash_layout(&self, state: &mut Hasher) { - struct ContainerWidget; - std::any::TypeId::of::().hash(state); + struct Marker; + std::any::TypeId::of::().hash(state); self.padding.hash(state); self.width.hash(state); -- cgit