gpui: Implement `PartialEq` and `Eq` for `WindowAppearance` (#25219)

someone13574 created

Release Notes:

- N/A

Change summary

crates/gpui/src/platform.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

crates/gpui/src/platform.rs 🔗

@@ -1068,7 +1068,7 @@ pub enum WindowKind {
 ///
 /// On macOS, this corresponds to named [`NSAppearance`](https://developer.apple.com/documentation/appkit/nsappearance)
 /// values.
-#[derive(Copy, Clone, Debug)]
+#[derive(Copy, Clone, Debug, PartialEq, Eq)]
 pub enum WindowAppearance {
     /// A light appearance.
     ///