changeset 339:c7d7accca022

Don't forget to super().event(...), especially when you shout at other people about it...
author Stefano Rivera <stefano@rivera.za.net>
date Fri, 16 Sep 2011 22:16:48 +0200
parents 2cadc8a427f0
children 5456db312f7f
files mamba/widgets/base.py
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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)