Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/keyboard.py
diff options
context:
space:
mode:
authorWade Brainerd <wadetb@gmail.com>2008-11-17 16:30:10 (GMT)
committer Wade Brainerd <wadetb@gmail.com>2008-11-17 16:30:10 (GMT)
commita0a41dcfa18821a53bb51b029d7dfea9bfd35af1 (patch)
tree255cb0419add685b64844d4a3c72c6f059764306 /keyboard.py
parent4d98b02e5566e20e23830231bb7c94456934f2b7 (diff)
Renamed activity from TypingTurtleApp to TypingTurtle, bundling fixes, improvements to lesson interface.
Diffstat (limited to 'keyboard.py')
-rw-r--r--keyboard.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/keyboard.py b/keyboard.py
index 5683a30..5dc92c3 100644
--- a/keyboard.py
+++ b/keyboard.py
@@ -423,9 +423,6 @@ class Keyboard(gtk.EventBox):
return True
def _key_press_cb(self, widget, event):
- # Useful line for determining what scan code matches what key.
- #print "HW: %x" % event.hardware_keycode
-
if self.key_map.has_key(event.hardware_keycode):
key = self.key_map[event.hardware_keycode]
key.pressed = True