From a2c3b7cdc29343af99bcbea0ac4d26b3ad9308b0 Mon Sep 17 00:00:00 2001 From: "Davide P. Cervone" Date: Sun, 11 Jan 2015 09:51:17 -0500 Subject: [PATCH] Use currentColor rather than black for SVG output. Resolves issue #1002. --- unpacked/jax/output/SVG/jax.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unpacked/jax/output/SVG/jax.js b/unpacked/jax/output/SVG/jax.js index 92d00f785..bfdd799a4 100644 --- a/unpacked/jax/output/SVG/jax.js +++ b/unpacked/jax/output/SVG/jax.js @@ -2034,7 +2034,7 @@ var box = BBOX.G(); box.Add(this.data[0].toSVG(),0,0,true); box.Clean(); this.SVGhandleColor(box); SVG.Element(box.element,{ - stroke:"black", fill:"black", "stroke-width":0, + stroke:"currentColor", fill:"currentColor", "stroke-width":0, transform: "matrix(1 0 0 -1 0 0)" }); box.removeable = false;