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/radio.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/radio.rs')
-rw-r--r-- | native/src/widget/radio.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/native/src/widget/radio.rs b/native/src/widget/radio.rs index c1e36e3d..0ec621bf 100644 --- a/native/src/widget/radio.rs +++ b/native/src/widget/radio.rs @@ -174,8 +174,8 @@ where } fn hash_layout(&self, state: &mut Hasher) { - struct RadioWidget; - std::any::TypeId::of::<RadioWidget>().hash(state); + struct Marker; + std::any::TypeId::of::<Marker>().hash(state); self.label.hash(state); } |