diff --git a/PROMS/Volian.Svg.Library/iTextSharp.cs b/PROMS/Volian.Svg.Library/iTextSharp.cs index 0f8fd502..d4524e26 100644 --- a/PROMS/Volian.Svg.Library/iTextSharp.cs +++ b/PROMS/Volian.Svg.Library/iTextSharp.cs @@ -520,9 +520,9 @@ namespace Volian.Svg.Library cb.SetColorStroke(new Color(OutlineColor)); } if (myParent is SvgGroup && (myParent as SvgGroup).Description.ToUpper() == "ABSOLUTE") - cb.Rectangle(scale.AbsX(X), scale.AbsY(cb, Y), scale.M(Width), -scale.M(Height)); + cb.RoundRectangle(scale.AbsX(X), scale.AbsY(cb, Y), scale.M(Width), -scale.M(Height), .005F); else - cb.Rectangle(scale.X(X), scale.Y(cb, Y), scale.M(Width), -scale.M(Height)); + cb.RoundRectangle(scale.X(X), scale.Y(cb, Y), scale.M(Width), -scale.M(Height), .005F); SvgITextLibrary.StrokeAndFill(cb, stroke, fill); cb.RestoreState(); }