Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/TurtleArt/taconstants.py
diff options
context:
space:
mode:
authorWalter Bender <walter@sugarlabs.org>2010-11-23 16:14:04 (GMT)
committer Walter Bender <walter@sugarlabs.org>2010-11-23 16:14:04 (GMT)
commit17e51b8e9cec72732bb49a776a88d830c92a874b (patch)
treebff759974ed79ea51e26dd4d787a2f4c60b8229c /TurtleArt/taconstants.py
parent2b3c3d11ecf82858d97c8498535c89d8138a59cc (diff)
make bottom of collapsed stack invisible
Diffstat (limited to 'TurtleArt/taconstants.py')
-rw-r--r--TurtleArt/taconstants.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/TurtleArt/taconstants.py b/TurtleArt/taconstants.py
index d44e6bb..3aaf97b 100644
--- a/TurtleArt/taconstants.py
+++ b/TurtleArt/taconstants.py
@@ -205,8 +205,9 @@ BASIC_STYLE_TAIL = ['stopstack', 'empty']
BASIC_STYLE = []
BASIC_STYLE_EXTENDED_VERTICAL = ['clean', 'penup', 'pendown', 'stack1',
'stack2', 'hideblocks', 'showblocks', 'clearheap', 'printheap', 'kbinput',
- 'fullscreen', 'sandwichcollapsed', 'cartesian', 'polar', 'startfill',
+ 'fullscreen', 'cartesian', 'polar', 'startfill',
'stopfill', 'readpixel', 'vspace']
+INVISIBLE = ['sandwichcollapsed']
BASIC_STYLE_EXTENDED = ['picturelist', 'picture1x1', 'picture2x2',
'picture2x1', 'picture1x2', 'picture1x1a']
BASIC_STYLE_1ARG = ['forward', 'back', 'left', 'right', 'seth', 'show', 'image',
@@ -398,11 +399,11 @@ BLOCK_NAMES = {
'savepix': [_('save picture')],
'savesvg': [_('save SVG')],
'sandwichbottom': [' ', ' '],
- 'sandwichcollapsed': [' ', _('click to open')],
+ 'sandwichcollapsed': [' '],
'sandwichtop': [_('top of stack')],
'sandwichtop_no_label': [' '],
'sandwichtop_no_arm': [_('top of stack')],
- 'sandwichtop_no_arm_no_label': [' '],
+ 'sandwichtop_no_arm_no_label': [' ', _('click to open')],
'scale': [_('scale')],
'see': [_('turtle sees')],
'sensor': [_('sensors')],