From 897d213fa37cca0c0e726493a1594a25b317d8ff Mon Sep 17 00:00:00 2001 From: Kathy Date: Mon, 21 Nov 2011 17:02:41 +0000 Subject: [PATCH] --- PROMS/Volian.Svg.Library/iTextSharp.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(); }