add PartialEq to Outline (#14055)

# Objective

`sickle_ui` needs `PartialEq` on components to turn them into animatable
style attributes.

## Solution

All properties of Outline is already `PartialEq`, add derive on
`Outline` as well.

## Testing

- used `sickle_ui` to test if it can be made animatable
This commit is contained in:
Tamás Kiss 2024-06-27 22:03:07 +02:00 committed by GitHub
parent 44db8b7fac
commit edca8707c8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1736,7 +1736,7 @@ impl Default for BorderColor {
}
}
#[derive(Component, Copy, Clone, Default, Debug, Reflect)]
#[derive(Component, Copy, Clone, Default, Debug, PartialEq, Reflect)]
#[reflect(Component, Default)]
#[cfg_attr(
feature = "serialize",