From ba5b55f899c9fbd9f0f4c48cdb02cf8aa3565a7d Mon Sep 17 00:00:00 2001 From: leyghisbb Date: Tue, 4 May 2021 17:23:11 +0200 Subject: [PATCH] fixed nasty style in archimedes spiral --- extensions/fablabchemnitz/archimedesspiral.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/fablabchemnitz/archimedesspiral.py b/extensions/fablabchemnitz/archimedesspiral.py index 62b7bcc9..5c55d240 100644 --- a/extensions/fablabchemnitz/archimedesspiral.py +++ b/extensions/fablabchemnitz/archimedesspiral.py @@ -47,7 +47,7 @@ class Archimedes(inkex.EffectExtension): layer = etree.SubElement(self.document.getroot(),'g') path = etree.Element(inkex.addNS('path','svg')) path.set('d', self.built(r, step, a, turns)) - path.set('style',"opacity:0.8;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.8;stroke-miterlimit:4;stroke-dashaphiay:none;stroke-opacity:1") + path.set('style',"fill:none;stroke:#000000;stroke-width:1px;stroke-opacity:1") layer.append(path) def built(self, r0, st = 4, a = 4, k = 1, th = 0):