From 8d8d997db0fe43ac0d80cceb0b0cbb89d17e1b7a Mon Sep 17 00:00:00 2001 From: Eitan Isaacson Date: Fri, 6 May 2011 14:08:52 -0400 Subject: Antler: Fixed location change updates for keyboard. --- caribou/antler/window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'caribou') 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() -- cgit v1.2.1