Missing Rectangle comparison on equality

This commit is contained in:
glax 2024-04-16 04:50:28 +02:00
parent d3e623ce26
commit bb47fd96fc

View File

@ -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;