Derive Eq for slider::State again

This commit is contained in:
Héctor Ramón Jiménez 2021-11-15 15:33:02 +07:00
parent 94d62bca9a
commit 1ce02e8c7a
No known key found for this signature in database
GPG key ID: 140CC052C94F138E

View file

@ -144,7 +144,7 @@ where
}
/// The local state of a [`Slider`].
#[derive(Debug, Clone, Copy, PartialEq, Default)]
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
pub struct State {
is_dragging: bool,
}