diff --git a/src/svg/SvgImport.js b/src/svg/SvgImport.js index a710755d..ed98ab7e 100644 --- a/src/svg/SvgImport.js +++ b/src/svg/SvgImport.js @@ -236,9 +236,7 @@ new function() { gradient.type = 'radial'; origin = getPoint(svg, 'cx', 'cy'); destination = origin.add(getValue(svg, 'r'), 0); - highlight = getPoint(svg, 'fx', 'fy'); - if (highlight.isZero()) - highlight = null; + highlight = getPoint(svg, 'fx', 'fy', true); } else { origin = getPoint(svg, 'x1', 'y1'); destination = getPoint(svg, 'x2', 'y2');