Fix a compile bug in update scroll containers

This commit is contained in:
Nic Barker 2024-09-20 07:12:11 +12:00
parent f17afc387a
commit b2d922c78d
2 changed files with 2 additions and 1 deletions

View file

@ -167,7 +167,7 @@ void UpdateDrawFrame(void)
}
}
Clay_UpdateScrollContainers(false, (Clay_Vector2) {mouseWheelX, mouseWheelY}, GetFrameTime());
Clay_UpdateScrollContainers(true, (Clay_Vector2) {mouseWheelX, mouseWheelY}, GetFrameTime());
// Generate the auto layout for rendering
double currentTime = GetTime();
Clay_RenderCommandArray renderCommands = CreateLayout();