ma pkgs.inkscape: update patch

This commit is contained in:
makefu 2017-10-08 17:36:33 +02:00
parent 30dbcd944a
commit 37000ba769

View file

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