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-10-02 14:08:13 (GMT)
committer Walter Bender <walter.bender@gmail.com>2012-10-02 14:08:13 (GMT)
commitcd22ed480868bc7da08638ac945f37c6690944a8 (patch)
tree63378b91b2ba9c6661af71ad6cbb2a13b4f9973c
parentf5b1c5cf28488ceae4d78e743de7a04452811a9b (diff)
new stop button behavior
-rw-r--r--TurtleArt/talogo.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/TurtleArt/talogo.py b/TurtleArt/talogo.py
index f2504bb..685af12 100644
--- a/TurtleArt/talogo.py
+++ b/TurtleArt/talogo.py
@@ -364,13 +364,13 @@ class LogoCode:
if self.tw.running_sugar:
# self.tw.activity.stop_turtle_button.set_icon("stopitoff")
if self.tw.step_time == 0 and self.tw.selected_blk is None:
- self.tw.activity.stop_turtle_button.set_icon("hideshowoff")
+ self.tw.activity.stop_turtle_button.set_icon("hideshowon")
self.tw.activity.stop_turtle_button.set_tooltip(
_('Show blocks'))
else:
- self.tw.activity.stop_turtle_button.set_icon("stopitoff")
+ self.tw.activity.stop_turtle_button.set_icon("hideshowoff")
self.tw.activity.stop_turtle_button.set_tooltip(
- _('Stop turtle'))
+ _('Hide blocks'))
elif self.tw.interactive_mode:
self.tw.toolbar_shapes['stopiton'].hide()
yield False