From c674b9fb7bba565fd0111a69f476157f76ff0958 Mon Sep 17 00:00:00 2001 From: Michael Deal Date: Thu, 4 Oct 2018 17:55:01 -0700 Subject: [PATCH] Update paint order --- canvas2svg.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/canvas2svg.js b/canvas2svg.js index dea6b96..8e3d43d 100644 --- a/canvas2svg.js +++ b/canvas2svg.js @@ -800,7 +800,7 @@ applyCurrentDefaultPath.call(this, false); } - element.setAttribute("paint-order", `${paintMethod2} ${paintMethod1} markers`); + element.setAttribute("paint-order", `${paintMethod1} ${paintMethod2} markers`); state[paintMethod1] = true; state.currentPath = currentPath;