Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/TurtleArt/tautils.py
diff options
context:
space:
mode:
Diffstat (limited to 'TurtleArt/tautils.py')
-rw-r--r--TurtleArt/tautils.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/TurtleArt/tautils.py b/TurtleArt/tautils.py
index a47c063..9372576 100644
--- a/TurtleArt/tautils.py
+++ b/TurtleArt/tautils.py
@@ -491,6 +491,7 @@ def restore_stack(top):
_dy += _newdy - _olddy
else:
if not _hit_bottom:
+ _blk.spr.restore()
_blk.spr.set_layer(BLOCK_LAYER)
_blk.status = None
else:
@@ -575,6 +576,7 @@ def collapse_stack(top):
else:
if not _hit_bottom:
_blk.spr.set_layer(HIDE_LAYER)
+ _blk.spr.hide()
_blk.status = 'collapsed'
else:
_blk.spr.move_relative((_dx, _dy))