From c1499766100012a3980ebcecfc419f8674f7ee01 Mon Sep 17 00:00:00 2001 From: Dariusz L Date: Thu, 26 Jun 2025 03:44:35 +0200 Subject: [PATCH] Update Canvas.js --- js/Canvas.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/Canvas.js b/js/Canvas.js index 1092abd..1cf1e1b 100644 --- a/js/Canvas.js +++ b/js/Canvas.js @@ -18,7 +18,7 @@ export class Canvas { this.widget = widget; this.canvas = document.createElement('canvas'); this.ctx = this.canvas.getContext('2d'); - this.width = 1024; + this.width = 512; this.height = 512; this.layers = []; this.selectedLayer = null;