diff options
author | 2020-04-12 01:20:40 +0200 | |
---|---|---|
committer | 2020-04-12 01:20:40 +0200 | |
commit | 41f6a325e9b6c9df18ab2c3bcf386be988f4b4ef (patch) | |
tree | 113ad57d34890978dd93b8a080a24fac8d130301 /native/src/widget/image.rs | |
parent | f7d7ab1ba9a037be6bf2a32f7b2662e5314ae3a5 (diff) | |
download | iced-41f6a325e9b6c9df18ab2c3bcf386be988f4b4ef.tar.gz iced-41f6a325e9b6c9df18ab2c3bcf386be988f4b4ef.tar.bz2 iced-41f6a325e9b6c9df18ab2c3bcf386be988f4b4ef.zip |
#288 Renamed XXXWidget to Marker
Diffstat (limited to 'native/src/widget/image.rs')
-rw-r--r-- | native/src/widget/image.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/native/src/widget/image.rs b/native/src/widget/image.rs index 0f38a90e..6bd0fd68 100644 --- a/native/src/widget/image.rs +++ b/native/src/widget/image.rs @@ -102,7 +102,8 @@ where } fn hash_layout(&self, state: &mut Hasher) { - std::any::TypeId::of::<Image>().hash(state); + struct Marker; + std::any::TypeId::of::<Marker>().hash(state); self.handle.hash(state); self.width.hash(state); |