Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/TurtleArt/tawindow.py
diff options
context:
space:
mode:
Diffstat (limited to 'TurtleArt/tawindow.py')
-rw-r--r--TurtleArt/tawindow.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/TurtleArt/tawindow.py b/TurtleArt/tawindow.py
index ea071f5..37ea9a1 100644
--- a/TurtleArt/tawindow.py
+++ b/TurtleArt/tawindow.py
@@ -1573,7 +1573,7 @@ class TurtleArtWindow():
self.sprite_list, 'turtle-label', 0, 0,
'label', [], 1.0 / self.scale,
colors)
- turtle.label_block.spr.set_label_attributes(1.0 / self.scale,
+ turtle.label_block.spr.set_label_attributes(4.0 / self.scale,
rescale=False)
turtle.label_block.spr.set_label(name)
turtle.show()
@@ -2938,4 +2938,3 @@ def dock_dx_dy(block1, dock1n, block2, dock2n):
(_b1x, _b1y) = block1.spr.get_xy()
(_b2x, _b2y) = block2.spr.get_xy()
return ((_b1x + _d1x) - (_b2x + _d2x), (_b1y + _d1y) - (_b2y + _d2y))
-