From c970a4b6ae56e389afaae5ffec8b9802273111a6 Mon Sep 17 00:00:00 2001 From: terurou Date: Sat, 16 Mar 2019 23:21:56 +0900 Subject: [PATCH] Fix copy-paste mistake. --- src/display/svg.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/display/svg.js b/src/display/svg.js index a1bb78322..a33a7cf9d 100644 --- a/src/display/svg.js +++ b/src/display/svg.js @@ -947,7 +947,7 @@ SVGGraphics = (function SVGGraphicsClosure() { this.current.xcoords = []; }, setStrokeColorN: function SVGGraphics_setStrokeColorN(args) { - this.endPathcurrent.strokeColor = this._makeColorN_Pattern(args); + this.current.strokeColor = this._makeColorN_Pattern(args); }, setFillColorN: function SVGGraphics_setFillColorN(args) { this.current.fillColor = this._makeColorN_Pattern(args);