# HG changeset patch # User Stefano Rivera # Date 1316204208 -7200 # Node ID c7d7accca022ae6140c0b13e89d4f5fce1bd5baa # Parent 2cadc8a427f0b2429273416fe391b324bedb0515 Don't forget to super().event(...), especially when you shout at other people about it... diff -r 2cadc8a427f0 -r c7d7accca022 mamba/widgets/base.py --- a/mamba/widgets/base.py Fri Sep 16 22:13:17 2011 +0200 +++ b/mamba/widgets/base.py Fri Sep 16 22:16:48 2011 +0200 @@ -238,6 +238,7 @@ elif ev.key == K_RIGHT: direction = RIGHT return self.adjust_focus(direction) + super(GridContainer, self).event(ev) def add(self, widget): assert not isinstance(widget, Container)