From 76f21b9dbe96dbe8b1de6225b4931e8708c443d4 Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Thu, 18 Nov 2021 22:26:29 +0100 Subject: [PATCH] whooops --- src/windowManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/windowManager.cpp b/src/windowManager.cpp index 85eb542..a3db23a 100644 --- a/src/windowManager.cpp +++ b/src/windowManager.cpp @@ -204,7 +204,7 @@ bool isNeighbor(CWindow* a, CWindow* b) { const auto POSA = a->getPosition(); const auto POSB = b->getPosition(); const auto SIZEA = a->getSize(); - const auto SIZEB = a->getSize(); + const auto SIZEB = b->getSize(); if (POSA.x != 0) { if (STICKS(POSA.x, (POSB.x + SIZEB.x))) {