mirror of
https://github.com/brmlab/lasic.git
synced 2025-06-08 09:14:01 +02:00
SvgProcessor: Fix 'M' path handling
This commit is contained in:
parent
cf5214d3e3
commit
51554581fb
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ class SVGHandler(xml.sax.handler.ContentHandler):
|
|||
x = float(delta[0])*self.scale
|
||||
y = float(delta[1])*self.scale
|
||||
x0,y0 = x,y
|
||||
cmd = 'l'
|
||||
cmd = 'L'
|
||||
elif cmd == 'l':
|
||||
delta = tokens[i].split(',')
|
||||
nx = x+float(delta[0])*self.scale
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue