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 François
parent 26f7313212
commit 20638f3a10
No known key found for this signature in database

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",