commit | 52d52f185ab6a7f215e975b13a5bbf3f01bdf3a4 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Wed Sep 24 22:11:59 2008 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Wed Sep 24 22:11:59 2008 +0000 |
tree | 003265eb2b5c0bdde6d73beb4274519de25a1ec1 | |
parent | a85c95d5e85e1d6886d1260b88221c2a31686a55 [diff] [blame] |
#3950 fix missing scale factors in turtle.py reviewers: Georg, Benjamin
diff --git a/Lib/lib-tk/turtle.py b/Lib/lib-tk/turtle.py index ddc69c9..cd6dbe8 100644 --- a/Lib/lib-tk/turtle.py +++ b/Lib/lib-tk/turtle.py
@@ -732,7 +732,7 @@ """Configure image item as to draw image object at position (x,y) on canvas) """ - self.cv.coords(item, (x, -y)) + self.cv.coords(item, (x * self.xscale, -y * self.yscale)) self.cv.itemconfig(item, image=image) def _setbgpic(self, item, image):