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-09-17 16:29:10 (GMT)
committer Walter Bender <walter@sugarlabs.org>2010-09-17 16:29:10 (GMT)
commita4828b634d1c8e6374785f503da26a6def3d8ade (patch)
tree9bf49d163f3c62aaf591e05e444bc502484db3d7 /TurtleArt/taconstants.py
parenta70753dd5b92f6fa519170c484208091b634a7cf (diff)
expandable 2-arg blocks
Diffstat (limited to 'TurtleArt/taconstants.py')
-rw-r--r--TurtleArt/taconstants.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/TurtleArt/taconstants.py b/TurtleArt/taconstants.py
index 7ad4aa1..097bd5c 100644
--- a/TurtleArt/taconstants.py
+++ b/TurtleArt/taconstants.py
@@ -237,15 +237,15 @@ PORTFOLIO_STYLE_1x2 = ['template1x2']
#
# Blocks that are expandable
#
-EXPANDABLE = ['vspace', 'hspace', 'templatelist', 'list', 'identity2',
- 'myfunc1arg', 'myfunc2arg', 'myfunc3arg', 'userdefined',
- 'userdefined2args', 'userdefined3args', 'plus2', 'minus2',
- 'division2', 'remainder2', 'product2', 'random', 'equal2',
- 'greater2', 'less2', 'and2', 'or2']
+EXPANDABLE = ['vspace', 'hspace', 'identity2']
-EXPANDABLE_MATH = ['plus2', 'minus2','division2', 'remainder2', 'product2',
- 'random', 'equal2', 'greater2', 'less2', 'and2', 'or2']
+EXPANDABLE_BLOCKS = ['plus2', 'minus2','division2', 'remainder2', 'product2',
+ 'random', 'equal2', 'greater2', 'less2', 'and2', 'or2',
+ 'arc', 'setxy', 'fillscreen', 'storein', 'write']
+EXPANDABLE_ARGS = ['templatelist', 'list', 'myfunc1arg', 'myfunc2arg',
+ 'myfunc3arg', 'userdefined', 'userdefined2args',
+ 'userdefined3args']
#
# Blocks that are 'collapsible'
#