Rename parameter

This commit is contained in:
Nic Barker 2024-09-18 11:39:14 +12:00
parent e139657ee1
commit 2729188a24

2
clay.h
View File

@ -3037,7 +3037,7 @@ void Clay_Initialize(Clay_Arena arena, Clay_Dimensions layoutDimensions) {
} }
CLAY_WASM_EXPORT("Clay_UpdateScrollContainers") 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 // Don't apply scroll events to ancestors of the inner element
int32_t highestPriorityElementIndex = -1; int32_t highestPriorityElementIndex = -1;
Clay__ScrollContainerDataInternal *highestPriorityScrollData = CLAY__NULL; Clay__ScrollContainerDataInternal *highestPriorityScrollData = CLAY__NULL;