Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--TurtleArtActivity.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/TurtleArtActivity.py b/TurtleArtActivity.py
index 10bcc5f..911c7b4 100644
--- a/TurtleArtActivity.py
+++ b/TurtleArtActivity.py
@@ -294,8 +294,10 @@ class TurtleArtActivity(activity.Activity):
self.tw.showblocks()
self.stop_turtle_button.set_icon('hideshowoff')
self.stop_turtle_button.set_tooltip(_('Hide blocks'))
- self.run_button.set_icon('run-fastoff')
- self.step_button.set_icon('run-slowoff')
+ # Note: We leave the old button state highlighted to indicate
+ # speed if blocks are clicked to run.
+ # self.run_button.set_icon('run-fastoff')
+ # self.step_button.set_icon('run-slowoff')
self.tw.stop_button()
self.tw.display_coordinates()