diff --git a/VectSharp.SVG/SVGContext.cs b/VectSharp.SVG/SVGContext.cs index 24c32573..0a39ceb0 100644 --- a/VectSharp.SVG/SVGContext.cs +++ b/VectSharp.SVG/SVGContext.cs @@ -675,7 +675,7 @@ public void FillText(string text, double x, double y) } else { - textElement.SetAttribute("font-weight", "regular"); + textElement.SetAttribute("font-weight", "normal"); } if (Font.FontFamily.IsItalic) @@ -721,7 +721,7 @@ public void FillText(string text, double x, double y) } else { - style.Add("font-weight", "regular"); + style.Add("font-weight", "normal"); } if (Font.FontFamily.IsItalic) @@ -1330,7 +1330,7 @@ public void StrokeText(string text, double x, double y) } else { - textElement.SetAttribute("font-weight", "regular"); + textElement.SetAttribute("font-weight", "normal"); } if (Font.FontFamily.IsItalic) @@ -1430,7 +1430,7 @@ public void StrokeText(string text, double x, double y) } else { - style.Add("font-weight", "regular"); + style.Add("font-weight", "normal"); } if (Font.FontFamily.IsItalic)