Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWalter Bender <walter.bender@gmail.com>2012-11-14 21:06:51 (GMT)
committer Walter Bender <walter.bender@gmail.com>2012-11-14 21:06:51 (GMT)
commit7451b8cb6a0a59e2a9de5d474e40146fc320550b (patch)
tree137372b0bcc17d0992df9e934dd0dd0a0ac03ec9
parentc8528ae0a115e9aa022c20068c589df72b716fcc (diff)
don't restore button state after stop
-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()