Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/TurtleArtActivity.py
diff options
context:
space:
mode:
Diffstat (limited to 'TurtleArtActivity.py')
-rw-r--r--TurtleArtActivity.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/TurtleArtActivity.py b/TurtleArtActivity.py
index 2bd8fd6..04f6229 100644
--- a/TurtleArtActivity.py
+++ b/TurtleArtActivity.py
@@ -360,21 +360,21 @@ class TurtleArtActivity(activity.Activity):
self.tw.lc.trace = 0
# Autohide blocks and palettes on run
self.tw.hideblocks()
- self.tw.run_button(0)
+ self.tw.run_button(0, running_from_button_push=True)
gobject.timeout_add(1000, self.run_button.set_icon, 'run-fastoff')
def do_step_cb(self, button):
''' Callback for step button (turtle) '''
self.step_button.set_icon('run-slowon')
self.tw.lc.trace = 1
- self.tw.run_button(3)
+ self.tw.run_button(3, running_from_button_push=True)
gobject.timeout_add(1000, self.step_button.set_icon, 'run-slowoff')
def do_debug_cb(self, button):
''' Callback for debug button (bug) '''
self.debug_button.set_icon('debugon')
self.tw.lc.trace = 1
- self.tw.run_button(9)
+ self.tw.run_button(9, running_from_button_push=True)
gobject.timeout_add(1000, self.debug_button.set_icon, 'debugoff')
def do_stop_cb(self, button):