From 7451b8cb6a0a59e2a9de5d474e40146fc320550b Mon Sep 17 00:00:00 2001 From: Walter Bender Date: Wed, 14 Nov 2012 21:06:51 +0000 Subject: don't restore button state after stop --- 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() -- cgit v0.9.1