Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/TurtleArt
diff options
context:
space:
mode:
Diffstat (limited to 'TurtleArt')
-rw-r--r--TurtleArt/talogo.py1
-rw-r--r--TurtleArt/tawindow.py6
2 files changed, 7 insertions, 0 deletions
diff --git a/TurtleArt/talogo.py b/TurtleArt/talogo.py
index 25ffceb..f3bb956 100644
--- a/TurtleArt/talogo.py
+++ b/TurtleArt/talogo.py
@@ -489,6 +489,7 @@ class LogoCode:
def prim_clear(self):
""" Clear screen """
+ self.tw.clear_plugins()
if self.tw.gst_available:
from tagplay import stop_media
# stop_media(self) # TODO: gplay variable
diff --git a/TurtleArt/tawindow.py b/TurtleArt/tawindow.py
index 58b939d..338675a 100644
--- a/TurtleArt/tawindow.py
+++ b/TurtleArt/tawindow.py
@@ -328,6 +328,12 @@ class TurtleArtWindow():
for plugin in self._plugins:
plugin.stop()
+ def clear_plugins(self):
+ """ Clear is called from the clean block and erase button """
+ for plugin in self._plugins:
+ if hasattr(plugin, 'clear'):
+ plugin.clear()
+
def background_plugins(self):
""" Background is called when we are pushed to the background. """
for plugin in self._plugins: