summaryrefslogtreecommitdiff
path: root/lib/svg
diff options
context:
space:
mode:
Diffstat (limited to 'lib/svg')
-rw-r--r--lib/svg/path.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/svg/path.py b/lib/svg/path.py
index 00e2c269..52144332 100644
--- a/lib/svg/path.py
+++ b/lib/svg/path.py
@@ -15,8 +15,10 @@ def get_node_transform(node):
# start with the identity transform
transform = [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0]]
- # combine this node's transform with all parent groups' transforms
- transform = simpletransform.composeParents(node, transform)
+ # this if is because sometimes inkscape likes to create paths outside of a layer?!
+ if node.getparent() is not None:
+ # combine this node's transform with all parent groups' transforms
+ transform = simpletransform.composeParents(node, transform)
# add in the transform implied by the viewBox
viewbox_transform = get_viewbox_transform(node.getroottree().getroot())