From 0d2e34fd4d62255a8323a071abb7869fc04b740d Mon Sep 17 00:00:00 2001 From: Marcin Czerniak Date: Mon, 15 Mar 2021 18:32:05 +0100 Subject: [PATCH] chore: remove stroke blur from grid --- src/grid.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/grid.js b/src/grid.js index 78cb453..98d75b7 100644 --- a/src/grid.js +++ b/src/grid.js @@ -28,9 +28,6 @@ const Grid = function(canvas) { } this.neonRect = (x, y, w, h) => { - this.ctx.globalCompositeOperation = 'lighter'; - this.ctx.shadowColor = "#fff"; - this.ctx.shadowBlur = 10; this.ctx.strokeStyle= "#fff"; this.ctx.lineWidth = 5; this.ctx.strokeRect(x, y, w, h);