Commit 52d52f18 authored by Benjamin Peterson's avatar Benjamin Peterson

#3950 fix missing scale factors in turtle.py

reviewers: Georg, Benjamin
parent a85c95d5
......@@ -732,7 +732,7 @@ class TurtleScreenBase(object):
"""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):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment