From a1cab3592b4f68055c976cd8e80d58ce033738cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Tue, 11 Jun 2013 14:15:43 -0700 Subject: [PATCH] No need to explicitly set fill to 'none' anymore since comparing style with parent handles this for us automatically now. --- src/svg/SVGExport.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/svg/SVGExport.js b/src/svg/SVGExport.js index 053173b0..e3ca8421 100644 --- a/src/svg/SVGExport.js +++ b/src/svg/SVGExport.js @@ -166,8 +166,6 @@ new function() { function exportGroup(item) { var attrs = getTransform(item), children = item._children; - // Override default SVG style on groups, then apply style. - attrs.fill = 'none'; var node = createElement('g', attrs); for (var i = 0, l = children.length; i < l; i++) { var child = exportSVG(children[i]);