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/scrollable.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'native/src/widget/scrollable.rs') diff --git a/native/src/widget/scrollable.rs b/native/src/widget/scrollable.rs index f1506a3e..393095a4 100644 --- a/native/src/widget/scrollable.rs +++ b/native/src/widget/scrollable.rs @@ -311,8 +311,8 @@ where } fn hash_layout(&self, state: &mut Hasher) { - struct ScrollableWidget; - std::any::TypeId::of::().hash(state); + struct Marker; + std::any::TypeId::of::().hash(state); self.height.hash(state); self.max_height.hash(state); -- cgit