diff --git a/editor/svgcanvas.js b/editor/svgcanvas.js index c331b0c2..03bb6001 100644 --- a/editor/svgcanvas.js +++ b/editor/svgcanvas.js @@ -1390,6 +1390,9 @@ const mouseDown = function (evt) { const all = mouseTarget.getElementsByTagName('*'), len = all.length; for (i = 0; i < len; i++) { + if (!all[i].style) { // mathML + continue; + } all[i].style.vectorEffect = 'non-scaling-stroke'; if (iswebkit) { delayedStroke(all[i]); } }