From 80b72afbebfba3cbf9fd732575a0e9789e30e388 Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Thu, 7 Apr 2022 16:45:38 +0200 Subject: [PATCH] fix cleanupWindows cleaning up wrong windows --- src/Window.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Window.hpp b/src/Window.hpp index 0d8653db..af0e8d84 100644 --- a/src/Window.hpp +++ b/src/Window.hpp @@ -75,7 +75,7 @@ public: // For the list lookup bool operator==(const CWindow& rhs) { - return m_uSurface.xdg == rhs.m_uSurface.xdg && m_uSurface.xwayland == rhs.m_uSurface.xwayland && m_vPosition == rhs.m_vPosition && m_vSize == rhs.m_vSize; + return m_uSurface.xdg == rhs.m_uSurface.xdg && m_uSurface.xwayland == rhs.m_uSurface.xwayland && m_vPosition == rhs.m_vPosition && m_vSize == rhs.m_vSize && m_fAlpha == rhs.m_fAlpha && m_bFadingOut == rhs.m_bFadingOut; } }; \ No newline at end of file