Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/TurtleArt/talogo.py
diff options
context:
space:
mode:
authorWalter Bender <walter.bender@gmail.com>2012-07-05 18:54:38 (GMT)
committer Walter Bender <walter.bender@gmail.com>2012-07-05 18:54:38 (GMT)
commit6c56adbc990b82b25256805cf683ef0dde5b28b8 (patch)
tree5e386c44c7e63979033aaf85a4e8cac478443325 /TurtleArt/talogo.py
parent4029ddcd1bf0da391fb26b7e717fe015bafb0fb9 (diff)
refactoring of sandwich blocks to use clamp
Diffstat (limited to 'TurtleArt/talogo.py')
-rw-r--r--TurtleArt/talogo.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/TurtleArt/talogo.py b/TurtleArt/talogo.py
index 3b55281..c422d29 100644
--- a/TurtleArt/talogo.py
+++ b/TurtleArt/talogo.py
@@ -386,7 +386,6 @@ class LogoCode:
# If the blocks are visible, highlight the current block.
if not self.tw.hide and self.bindex is not None:
self.tw.block_list.list[self.bindex].highlight()
-
# In debugging modes, we pause between steps and show the turtle.
if self.tw.step_time > 0:
self.tw.active_turtle.show()
@@ -408,12 +407,10 @@ class LogoCode:
# Time to unhighlight the current block.
if not self.tw.hide and self.bindex is not None:
self.tw.block_list.list[self.bindex].unhighlight()
-
if self.procstop:
break
if self.iresult == None:
continue
-
if self.bindex is not None:
self.tw.block_list.list[self.bindex].highlight()
self.tw.showblocks()