diff options
Diffstat (limited to 'Mac/Lib/FrameWork.py')
-rw-r--r-- | Mac/Lib/FrameWork.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Mac/Lib/FrameWork.py b/Mac/Lib/FrameWork.py index bb13757..49003bb 100644 --- a/Mac/Lib/FrameWork.py +++ b/Mac/Lib/FrameWork.py @@ -261,7 +261,8 @@ class Application: do_char = window.do_char except AttributeError: do_char = self.do_char - do_char(c, event) + do_char(c, event) + # else it wasn't for us, sigh... def do_char(self, c, event): if DEBUG: print "Character", `c` |