fix unit in netting
This commit is contained in:
parent
1558e2eec2
commit
d3d4f59fe8
@ -38,7 +38,7 @@ class Netting(inkex.EffectExtension):
|
|||||||
|
|
||||||
def effect(self):
|
def effect(self):
|
||||||
#static
|
#static
|
||||||
style = {'stroke-width': str(self.options.stroke_width) +'px', 'stroke': '#000000', 'fill': 'none'}
|
style = {'stroke-width': "{:0.6f}".format(self.svg.unittouu(str(self.options.stroke_width) + "px")), 'stroke': '#000000', 'fill': 'none'}
|
||||||
old_segments = []
|
old_segments = []
|
||||||
new_segments = []
|
new_segments = []
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user