From 223e957f831a53085b6c4bb1599febc39d08a4ee Mon Sep 17 00:00:00 2001 From: HF Date: Mon, 19 Sep 2022 02:50:15 +0200 Subject: [PATCH] remove filter --- src/ui/ChunkRGB.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ui/ChunkRGB.js b/src/ui/ChunkRGB.js index e320510..0cc82dd 100644 --- a/src/ui/ChunkRGB.js +++ b/src/ui/ChunkRGB.js @@ -79,7 +79,6 @@ class ChunkRGB { fromImage(img) { this.ready = true; const ctx = this.image.getContext('2d'); - ctx.filter = 'contrast(1.5) brightness(0.5)'; ctx.drawImage(img, 0, 0); }