stockholm/makefu/5pkgs/custom/inkscape/dxf_fix.patch
2017-08-16 22:03:48 +02:00

14 lines
616 B
Diff

--- ./share/extensions/dxf_outlines.py 2017-02-14 00:46:57.000000000 +0100
+++ ./share/extensions/dxf_outlines.py.new 2017-05-10 04:15:03.000000000 +0200
@@ -340,7 +340,7 @@
scale = eval(self.options.units)
if not scale:
scale = 25.4/96 # if no scale is specified, assume inch as baseunit
- h = self.unittouu(self.document.getroot().xpath('@height', namespaces=inkex.NSS)[0])
+ h = self.unittouu(self.getDocumentHeight())
self.groupmat = [[[scale, 0.0, 0.0], [0.0, -scale, h*scale]]]
doc = self.document.getroot()
self.process_group(doc)