Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tawindow.py
diff options
context:
space:
mode:
Diffstat (limited to 'tawindow.py')
-rw-r--r--tawindow.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tawindow.py b/tawindow.py
index d0765b4..5de4183 100644
--- a/tawindow.py
+++ b/tawindow.py
@@ -402,12 +402,13 @@ def hideshow_blocks(tw,spr):
def run(tw, spr):
print "you better run, turtle, run!!"
+ setshape(spr,spr.onshape)
for b in blocks(tw):
if find_block_to_run(tw, b):
- setshape(spr,spr.onshape)
run_stack(tw, b)
- setshape(spr,spr.offshape)
+ gobject.timeout_add(250,setshape,spr,spr.offshape)
return
+ setshape(spr,spr.offshape)
# find a stack to run (a stack without a hat)
def find_block_to_run(tw, spr):