From 08089dcc14a2fe456488e7bf88e24a7de0c11129 Mon Sep 17 00:00:00 2001 From: Matteo Susca Date: Fri, 23 Jan 2026 14:31:24 +0100 Subject: [PATCH] PIX-32 fixed view bug that shows a clear canvas when joining --- client/src/components/editor/PixelCanvas.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/editor/PixelCanvas.vue b/client/src/components/editor/PixelCanvas.vue index 2015db2..196f9ed 100644 --- a/client/src/components/editor/PixelCanvas.vue +++ b/client/src/components/editor/PixelCanvas.vue @@ -81,7 +81,7 @@ onMounted(() => { drawAll(); }); -watch(() => [props.zoom, props.width, props.height], drawAll); +watch(() => [props.zoom, props.width, props.height, props.pixels], drawAll); // Efficiently handle remote pixel updates - only redraw the changed pixel watch(() => props.pixelUpdateEvent, (event) => {