summaryrefslogtreecommitdiff
path: root/caribou/antler/window.py
diff options
context:
space:
mode:
Diffstat (limited to 'caribou/antler/window.py')
-rw-r--r--caribou/antler/window.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/caribou/antler/window.py b/caribou/antler/window.py
index bb00ecf..e3da33c 100644
--- a/caribou/antler/window.py
+++ b/caribou/antler/window.py
@@ -265,7 +265,7 @@ class AntlerWindow(ProximityWindowBase):
x += self.placement.x.adjust_to_bounds(root_bbox, proposed_position)
y += self.placement.y.adjust_to_bounds(root_bbox, proposed_position)
- return origx != x or origy != y, x, y
+ return self.get_position() != (x, y) != y, x, y
def _update_position(self):
changed, x, y = self.get_expected_position()