From 2729188a2492a4dc3cd3dd5effbaf21563cfb0eb Mon Sep 17 00:00:00 2001 From: Nic Barker Date: Wed, 18 Sep 2024 11:39:14 +1200 Subject: [PATCH] Rename parameter --- clay.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clay.h b/clay.h index 993e1a2..7f0ae78 100644 --- a/clay.h +++ b/clay.h @@ -3037,7 +3037,7 @@ void Clay_Initialize(Clay_Arena arena, Clay_Dimensions layoutDimensions) { } CLAY_WASM_EXPORT("Clay_UpdateScrollContainers") -void Clay_UpdateScrollContainers(bool isPointerActive, Clay_Vector2 scrollDelta, float deltaTime) { +void Clay_UpdateScrollContainers(bool enableDragScrolling, Clay_Vector2 scrollDelta, float deltaTime) { // Don't apply scroll events to ancestors of the inner element int32_t highestPriorityElementIndex = -1; Clay__ScrollContainerDataInternal *highestPriorityScrollData = CLAY__NULL;