Index: web/client/scripts/draw.js =================================================================== --- web/client/scripts/draw.js (revision 5642) +++ web/client/scripts/draw.js (revision 5643) @@ -62,7 +62,6 @@ this.canvas.beginPath(); this.canvas.moveTo(x1, y1); this.canvas.lineTo(x2, y2); - this.canvas.closePath(); this.canvas.stroke(); } GraphicEngine.prototype.rect = function (gci, x1, y1, x2, y2, filled) { @@ -81,7 +80,6 @@ this.selectGC(gci); this.canvas.beginPath(); this.canvas.arc(x1, y1, r, 0, 2 * Math.PI); - this.canvas.closePath(); this.canvas.fill(); } GraphicEngine.prototype.setColor = function (gci, color) {