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/slider.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'native/src/widget/slider.rs') diff --git a/native/src/widget/slider.rs b/native/src/widget/slider.rs index 3e8c836e..1feb7825 100644 --- a/native/src/widget/slider.rs +++ b/native/src/widget/slider.rs @@ -205,8 +205,8 @@ where } fn hash_layout(&self, state: &mut Hasher) { - struct SliderWidget; - std::any::TypeId::of::().hash(state); + struct Marker; + std::any::TypeId::of::().hash(state); self.width.hash(state); } -- cgit