Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tawindow.py
diff options
context:
space:
mode:
authorWalter Bender <walter@walter-laptop.(none)>2010-02-07 17:58:17 (GMT)
committer Walter Bender <walter@walter-laptop.(none)>2010-02-07 17:58:17 (GMT)
commit4171a7ab671f92e82c41b67b9303e4d2662cd3cd (patch)
tree872bedf0c1594f83cae5695da1690055e7e69805 /tawindow.py
parentc49abf3c80c41f2dbe740435adf7ca3bbbd740b1 (diff)
fixed font-scaling bug for growing/shrinking blocks
Diffstat (limited to 'tawindow.py')
-rw-r--r--tawindow.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/tawindow.py b/tawindow.py
index 29297bb..49190b6 100644
--- a/tawindow.py
+++ b/tawindow.py
@@ -1413,7 +1413,6 @@ class TurtleArtWindow():
'Alt_L', 'Alt_R', 'KP_Enter', 'ISO_Level3_Shift']:
keyname = ''
keyunicode = 0
- print "saw a noise key: %s" % (keyname)
# Hack until I sort out input and unicode and dead keys,
if keyname[0:5] == 'dead_':
self.dead_key = keyname
@@ -1421,7 +1420,6 @@ class TurtleArtWindow():
keyunicode = 0
if keyname in WHITE_SPACE:
keyunicode = 32
- print "preparing to process [%s:%s] (%s)" % (oldleft, oldright, keyname)
if keyname == 'BackSpace':
if len(oldleft) > 1:
newleft = oldleft[:len(oldleft)-1]
@@ -1458,11 +1456,6 @@ class TurtleArtWindow():
newleft = oldleft+unichr(keyunicode)
else:
newleft = oldleft
- '''
- else:
- print "setting new left to ''"
- newleft = ''
- '''
self.selected_blk.spr.set_label("%s%s%s" % \
(newleft, CURSOR, oldright))