Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/plugins/turtle_blocks_extras/turtle_blocks_extras.py
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/turtle_blocks_extras/turtle_blocks_extras.py')
-rw-r--r--plugins/turtle_blocks_extras/turtle_blocks_extras.py12
1 files changed, 8 insertions, 4 deletions
diff --git a/plugins/turtle_blocks_extras/turtle_blocks_extras.py b/plugins/turtle_blocks_extras/turtle_blocks_extras.py
index ade0508..7a9fc03 100644
--- a/plugins/turtle_blocks_extras/turtle_blocks_extras.py
+++ b/plugins/turtle_blocks_extras/turtle_blocks_extras.py
@@ -96,8 +96,10 @@ class Turtle_blocks_extras(Plugin):
# internally expanded macro
palette.add_block('while',
- style='flow-style-boolean',
- label=[_('while'), ' ', ' '],
+ # style='flow-style-boolean',
+ style='clamp-style-boolean',
+ # label=[_('while'), ' ', ' '],
+ label=_('while'),
prim_name='while',
default=[None, None, None],
special_name=_('while'),
@@ -106,8 +108,10 @@ boolean operators from Numbers palette'))
# internally expanded macro
palette.add_block('until',
- style='flow-style-boolean',
- label=[_('until'), ' ', ' '],
+ # style='flow-style-boolean',
+ style='clamp-style-boolean',
+ # label=[_('until'), ' ', ' '],
+ label=_('until'),
prim_name='until',
default=[None, None, None],
special_name=_('until'),