From 4029ddcd1bf0da391fb26b7e717fe015bafb0fb9 Mon Sep 17 00:00:00 2001 From: Walter Bender Date: Thu, 05 Jul 2012 13:28:47 +0000 Subject: convert flow blocks to new clamp style --- (limited to 'plugins') 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'), -- cgit v0.9.1