From bde4572bc5bc1178bb3dfabc86f545989bb7229a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ram=C3=B3n=20Jim=C3=A9nez?= Date: Tue, 24 Jun 2025 14:06:19 +0200 Subject: [PATCH] Remove `PartialEq` implementation for `window::Position` --- core/src/window/position.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/window/position.rs b/core/src/window/position.rs index 1c8e86b6..2b31a5e2 100644 --- a/core/src/window/position.rs +++ b/core/src/window/position.rs @@ -1,7 +1,7 @@ use crate::{Point, Size}; /// The position of a window in a given screen. -#[derive(Debug, Clone, Copy, PartialEq)] +#[derive(Debug, Clone, Copy)] pub enum Position { /// The platform-specific default position for a new window. Default,