fix missing ) after clip-path

This commit is contained in:
Laura Klünder 2017-10-20 01:04:03 +02:00
parent b5d5d4875e
commit 86c9cfa827

View file

@ -172,7 +172,7 @@ class SVGImage:
attribs = ' filter="url(#'+blur_id+')" fill="#000" fill-opacity="0.2"'
if clip_path:
attribs += ' clip-path="url(#'+self.register_clip_path(clip_path)+'"'
attribs += ' clip-path="url(#'+self.register_clip_path(clip_path)+')"'
shadow = self._create_geometry(shadow_geom, attribs)
self.g += shadow