Fix Context.curve_to

Didn't move to the end point properly in the new backend.
This commit is contained in:
Florian Festi 2020-10-18 11:08:03 +02:00
parent 90c783568f
commit 2d64dcccdf
1 changed files with 1 additions and 0 deletions

View File

@ -321,6 +321,7 @@ class Context:
self._add_move()
self._dwg.append("C", mx3, my3, mx1, my1, mx2, my2) # destination first!
self._xy = (x3, y3)
self._mxy = (mx3, my3)
def stroke(self):
# print('stroke stack-level=',len(self._stack),'lastpath=',self._last_path,)