From a01b019f06771ba88db68d01fab32774049603ed Mon Sep 17 00:00:00 2001 From: Walter Bender Date: Sat, 12 May 2012 12:33:07 +0000 Subject: blank coordinate view when running with rabbit (#3599) --- (limited to 'turtleblocks.py') diff --git a/turtleblocks.py b/turtleblocks.py index 5386a9d..7deb92e 100755 --- a/turtleblocks.py +++ b/turtleblocks.py @@ -546,6 +546,7 @@ class TurtleMain(): ''' Callback for run button (rabbit). ''' self.tw.lc.trace = 0 self.tw.hideblocks() + self.tw.display_coordinates(clear=True) self.tw.run_button(0, running_from_button_push=True) return @@ -565,6 +566,7 @@ class TurtleMain(): ''' Callback for stop button. ''' self.tw.lc.trace = 0 self.tw.stop_button() + self.tw.display_coordinates() return def _do_copy_cb(self, button): -- cgit v0.9.1