Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tawindow.py
diff options
context:
space:
mode:
authorRaúl Gutiérrez S <rgs@paraguayeduca.org>2010-01-27 01:51:30 (GMT)
committer Raúl Gutiérrez S <rgs@paraguayeduca.org>2010-01-27 01:51:30 (GMT)
commitb3fbfc58db6a5ea740fed33fc208702f59df5a7c (patch)
tree2d0a009950595f92f4d3e09afe16a6eaa4e70642 /tawindow.py
parentb34f16ddb5012df4929d07443c7423cfb26f3b88 (diff)
mini fix.. jogging a block to the right was broken (it meant to the left
Diffstat (limited to 'tawindow.py')
-rw-r--r--tawindow.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tawindow.py b/tawindow.py
index 42f07b3..accbb1e 100644
--- a/tawindow.py
+++ b/tawindow.py
@@ -680,7 +680,7 @@ class TurtleArtWindow():
mov_dict = {'KP_Up':[0,10],'j':[0,10],'Up':[0,10],
'KP_Down':[0,-10],'k':[0,-10],'Down':[0,-10],
'KP_Left':[-10,0],'h':[-10,0],'Left':[-10,0],
- 'KP_Right':[-10,0],'l':[-10,0],'Right':[-10,0],
+ 'KP_Right':[-10,0],'l':[-10,0],'Right':[10,0],
'KP_Page_Down':[0,0], 'KP_Page_Up':[0,0], 'KP_End':[0,0],
'KP_Home':[-1,-1],'Return':[-1,-1], 'Esc':[0,0]}
if not mov_dict.has_key(keyname):