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.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/caribou/antler/window.py b/caribou/antler/window.py
index c567a93..a72203e 100644
--- a/caribou/antler/window.py
+++ b/caribou/antler/window.py
@@ -386,9 +386,9 @@ class AntlerWindowDocked(AntlerWindow):
x, y = self.get_position()
return self.animated_move(x + self.get_allocated_width(), y)
- def hide(self, timestamp):
+ def hide(self):
animation = self._roll_out()
- animation.connect('completed', lambda x: AntlerWindow.hide(self, timestamp))
+ animation.connect('completed', lambda x: AntlerWindow.hide(self))
class AntlerWindowEntry(AntlerWindow):
def __init__(self, keyboard_view_factory):