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/tawindow.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/TurtleArt/tawindow.py b/TurtleArt/tawindow.py
index 6e11a3a..a8b23fa 100644
--- a/TurtleArt/tawindow.py
+++ b/TurtleArt/tawindow.py
@@ -1297,7 +1297,7 @@ class TurtleArtWindow():
if blk.name == 'restoreall':
self._restore_all_from_trash()
elif blk.name == 'restore':
- self._restore_latest_from_trash()
+ self.restore_latest_from_trash()
elif blk.name == 'empty':
self._empty_trash()
elif blk.name == 'trashall':
@@ -1686,7 +1686,7 @@ class TurtleArtWindow():
if blk.type == 'trash':
self._restore_from_trash(blk)
- def _restore_latest_from_trash(self):
+ def restore_latest_from_trash(self):
''' Restore most recent blocks from the trash can. '''
if len(self.trash_stack) == 0:
return