From 80fa395d8e89542b34b92078be464d9af0992cb8 Mon Sep 17 00:00:00 2001 From: jkuehner Date: Tue, 19 Aug 2025 14:29:13 +0200 Subject: [PATCH] currentColor default black, should maybe configurable on svg image object --- Source/SVGImage/SVG/PaintServers/CurrentColorPaintServer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } } }