This commit is contained in:
Kathy Ruffing 2011-11-21 17:02:41 +00:00
parent 382a62d60f
commit 897d213fa3

View File

@ -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();
}