diff --git a/clay.h b/clay.h index 9ad063e..226fa31 100644 --- a/clay.h +++ b/clay.h @@ -2695,7 +2695,6 @@ void Clay__CalculateFinalLayout(void) { if (clipConfig->vertical) { rootPosition.y += clipConfig->childOffset.y; } - break; } Clay__AddRenderCommand(CLAY__INIT(Clay_RenderCommand) { .boundingBox = clipHashMapItem->boundingBox, diff --git a/examples/clay-official-website/build/clay/index.html b/examples/clay-official-website/build/clay/index.html index 2cbf9ce..2c58034 100644 --- a/examples/clay-official-website/build/clay/index.html +++ b/examples/clay-official-website/build/clay/index.html @@ -564,7 +564,6 @@ element.style.fontSize = fontSize + 'px'; if (renderCommand.userData.value !== 0) { let customData = readStructAtAddress(renderCommand.userData.value, customHTMLDataDefinition); - console.log(customData.disablePointerEvents.value); element.style.pointerEvents = customData.disablePointerEvents.value ? 'none' : 'all'; let linkContents = customData.link.length.value > 0 ? textDecoder.decode(new Uint8Array(memoryDataView.buffer.slice(customData.link.chars.value, customData.link.chars.value + customData.link.length.value))) : 0; memoryDataView.setUint32(0, renderCommand.id.value, true); diff --git a/examples/clay-official-website/build/clay/index.wasm b/examples/clay-official-website/build/clay/index.wasm index c42e121..fc9be6f 100755 Binary files a/examples/clay-official-website/build/clay/index.wasm and b/examples/clay-official-website/build/clay/index.wasm differ