Skip to content

Commit 56c12fc

Browse files
authored
Merge pull request #15 from pixie-git/bugfix/PIX-32_canvas-socket-inconsintency
PIX-32 fixed view bug that shows a clear canvas when joining
2 parents 6060f34 + 08089dc commit 56c12fc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

client/src/components/editor/PixelCanvas.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ onMounted(() => {
8181
drawAll();
8282
});
8383
84-
watch(() => [props.zoom, props.width, props.height], drawAll);
84+
watch(() => [props.zoom, props.width, props.height, props.pixels], drawAll);
8585
8686
// Efficiently handle remote pixel updates - only redraw the changed pixel
8787
watch(() => props.pixelUpdateEvent, (event) => {

0 commit comments

Comments
 (0)