diff options
author | 2022-09-07 12:04:56 -0400 | |
---|---|---|
committer | 2022-11-03 03:23:35 +0100 | |
commit | bc26dff2ca1d3bcc431d489c5958df5e864f1863 (patch) | |
tree | ad1127f2052dd62f0b6c6b13a9082bf4931a9d2c /native/src/widget/radio.rs | |
parent | e2166ecad020662d246b364637efc4e6ee3bc1db (diff) | |
download | iced-bc26dff2ca1d3bcc431d489c5958df5e864f1863.tar.gz iced-bc26dff2ca1d3bcc431d489c5958df5e864f1863.tar.bz2 iced-bc26dff2ca1d3bcc431d489c5958df5e864f1863.zip |
refactor: undo changes to radio
Diffstat (limited to '')
-rw-r--r-- | native/src/widget/radio.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/native/src/widget/radio.rs b/native/src/widget/radio.rs index 204247f8..cb83f745 100644 --- a/native/src/widget/radio.rs +++ b/native/src/widget/radio.rs @@ -84,7 +84,7 @@ where f: F, ) -> Self where - V: PartialEq + Copy, + V: Eq + Copy, F: FnOnce(V) -> Message, { Radio { |