chore: remove stroke blur from grid

This commit is contained in:
Marcin Czerniak 2021-03-15 18:32:05 +01:00
parent 28d3ce6cc3
commit 0d2e34fd4d

View File

@ -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);