diff --git a/Source/SVGImage/SVG/PaintServers/CurrentColorPaintServer.cs b/Source/SVGImage/SVG/PaintServers/CurrentColorPaintServer.cs index 0402163..ee30264 100644 --- a/Source/SVGImage/SVG/PaintServers/CurrentColorPaintServer.cs +++ b/Source/SVGImage/SVG/PaintServers/CurrentColorPaintServer.cs @@ -12,7 +12,7 @@ public CurrentColorPaintServer(PaintServerManager owner) public override Brush GetBrush(double opacity, SVG svg, SVGRender svgRender, Rect bounds) { - return null; + return Brushes.Black; } } }