Fixed bug in Windows rmoveto

This commit is contained in:
Skyler Lehmkuhl 2013-01-19 17:19:51 -05:00
parent 8b5b174ba1
commit dfbdb929e0
1 changed files with 2 additions and 1 deletions

View File

@ -42,7 +42,8 @@ class Canvas(Properties):
self.textcolor = c self.textcolor = c
def rmoveto(self, dx, dy): def rmoveto(self, dx, dy):
x0, y0 = self._current_point() x0, y0 = self._current_point
# x0, y0 = self._current_point()
self.moveto(x0 + dx, y0 + dy) self.moveto(x0 + dx, y0 + dy)
def rlineto(self, dx, dy): def rlineto(self, dx, dy):