Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/TurtleArt
diff options
context:
space:
mode:
authorWalter Bender <walter@sugarlabs.org>2013-10-08 12:58:48 (GMT)
committer Walter Bender <walter@sugarlabs.org>2013-10-08 12:58:48 (GMT)
commit991101facb5808b750af6d9017d65f9726fc62ea (patch)
treee2e3266c04761aee574c177763007c134a43c9b9 /TurtleArt
parentd127998b70fb003a3c5356ca237100f04ece1d89 (diff)
fix label ambiguity with addturtle and turtle-label blocks
Diffstat (limited to 'TurtleArt')
-rw-r--r--TurtleArt/tabasics.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/TurtleArt/tabasics.py b/TurtleArt/tabasics.py
index 8586ad9..3d1eb10 100644
--- a/TurtleArt/tabasics.py
+++ b/TurtleArt/tabasics.py
@@ -278,10 +278,11 @@ turtle (can be used in place of a number block)'),
0,
lambda self: self.tw.turtles.get_active_turtle().get_heading())
+ # This block is used for holding the remote turtle name
palette.add_block('turtle-label',
hidden=True,
style='blank-style',
- label=['turtle'])
+ label=['remote turtle name'])
# Deprecated
palette.add_block('setxy',