From 96b6b6a92bb1021dd4a818a76e1c59af6d682b74 Mon Sep 17 00:00:00 2001 From: Walter Bender Date: Wed, 03 Feb 2010 19:16:53 +0000 Subject: saving/restoring multiple turtles; fixed turtle selection bug --- (limited to 'talogo.py') diff --git a/talogo.py b/talogo.py index 09c18b4..ec63d42 100644 --- a/talogo.py +++ b/talogo.py @@ -402,7 +402,6 @@ class LogoCode: self.procstop = False list = self.readline(str) self.step = self.start_eval(list) - # self.tw.turtle_list.show_all() """ Convert the pseudocode into a list of commands. @@ -574,11 +573,11 @@ class LogoCode: print "step is None" return False except StopIteration: - self.tw.active_turtle.show() + self.tw.turtle_list.show_all() return False except logoerror, e: self.showlabel(str(e)[1:-1]) - self.tw.active_turtle.show() + self.tw.turtle_list.show_all() return False return True -- cgit v0.9.1