summaryrefslogtreecommitdiffstats
path: root/Mac
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1995-12-12 15:03:35 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1995-12-12 15:03:35 (GMT)
commit6f47bf44caae86045c784477f77a7b11cbad9aed (patch)
tree8bbd3262a00159715ee8f411df4fc6339ad9abd8 /Mac
parent425e9eb6cb269dda231a617a28252f5232ccc624 (diff)
downloadcpython-6f47bf44caae86045c784477f77a7b11cbad9aed.zip
cpython-6f47bf44caae86045c784477f77a7b11cbad9aed.tar.gz
cpython-6f47bf44caae86045c784477f77a7b11cbad9aed.tar.bz2
Minor bugfix in keyboard input handling
Diffstat (limited to 'Mac')
-rw-r--r--Mac/Lib/FrameWork.py3
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`