From bb47fd96fce342eaf2d3313a9d4166a3f5bc18e3 Mon Sep 17 00:00:00 2001 From: glax Date: Tue, 16 Apr 2024 04:50:28 +0200 Subject: [PATCH] Missing Rectangle comparison on equality --- OBSBlur/Window/WindowInfo.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/OBSBlur/Window/WindowInfo.cs b/OBSBlur/Window/WindowInfo.cs index eaf8baa..9b674fc 100644 --- a/OBSBlur/Window/WindowInfo.cs +++ b/OBSBlur/Window/WindowInfo.cs @@ -31,6 +31,7 @@ public struct WindowInfo return WindowHandle == other.WindowHandle && IsVisible == other.IsVisible && WindowCommands == other.WindowCommands && + WindowRectangle == other.WindowRectangle && WindowTitle.Equals(other.WindowTitle) && ProcessInfo.ProcessName.Equals(other.ProcessInfo.ProcessName) && ProcessInfo.Id == other.ProcessInfo.Id;