diff --git a/GDStoSVG/SVGWriter.cs b/GDStoSVG/SVGWriter.cs index d05607f..6ae747e 100644 --- a/GDStoSVG/SVGWriter.cs +++ b/GDStoSVG/SVGWriter.cs @@ -148,7 +148,7 @@ public void WritePath(Path path, Transform trans) string Colour = Layer.Colour.ToString("X6"); double Width = path.Width < 0 ? -path.Width : path.Width * trans.Magnification; - Out += string.Format(@""" stroke=""#" + Colour + @""" stroke-width=""" + Width + @""" opacity=""" + Layer.Opacity + @""" stroke-linecap=""" + EndcapType + @""" />"); + Out += string.Format(@""" stroke=""#" + Colour + @""" stroke-width=""" + Width + @""" opacity=""" + Layer.Opacity + @""" stroke-linecap=""" + EndcapType + @""" fill=""none"" />"); this.Output[(short)path.Layer].Add(Out); }