Fixed bug in Windows rmoveto
This commit is contained in:
parent
8b5b174ba1
commit
dfbdb929e0
|
|
@ -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):
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue