diff options
author | 2024-10-12 19:55:41 -0400 | |
---|---|---|
committer | 2024-10-14 20:59:32 +0200 | |
commit | f912d26d64c80fe767e97a0c79416d7398f04488 (patch) | |
tree | 7ab5b37c97532c2f65bae8783c6876dffa139ba4 /widget/src/text_input.rs | |
parent | c217500a5abd1fbfc1e598fb98dadd3ee85d8a51 (diff) | |
download | iced-f912d26d64c80fe767e97a0c79416d7398f04488.tar.gz iced-f912d26d64c80fe767e97a0c79416d7398f04488.tar.bz2 iced-f912d26d64c80fe767e97a0c79416d7398f04488.zip |
Add `PartialEq` derives for widget styles
Diffstat (limited to '')
-rw-r--r-- | widget/src/text_input.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widget/src/text_input.rs b/widget/src/text_input.rs index 5bbf76f5..ff413779 100644 --- a/widget/src/text_input.rs +++ b/widget/src/text_input.rs @@ -1541,7 +1541,7 @@ pub enum Status { } /// The appearance of a text input. -#[derive(Debug, Clone, Copy)] +#[derive(Debug, Clone, Copy, PartialEq)] pub struct Style { /// The [`Background`] of the text input. pub background: Background, |