We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54e5b74 commit ee4d467Copy full SHA for ee4d467
1 file changed
GDStoSVG/SVGWriter.cs
@@ -148,7 +148,7 @@ public void WritePath(Path path, Transform trans)
148
string Colour = Layer.Colour.ToString("X6");
149
double Width = path.Width < 0 ? -path.Width : path.Width * trans.Magnification;
150
151
- 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"" />");
152
this.Output[(short)path.Layer].Add(Out);
153
}
154
0 commit comments