this repo has no description
13
fork

Configure Feed

Select the types of activity you want to include in your feed.

vxfw(ListView): fix integer overflow

+2 -2
+2 -2
src/vxfw/ListView.zig
··· 350 350 351 351 // Set up constraints. We let the child be the entire height if it wants 352 352 const child_ctx = ctx.withConstraints( 353 - .{ .width = max_size.width - child_offset, .height = 0 }, 354 - .{ .width = max_size.width - child_offset, .height = null }, 353 + .{ .width = max_size.width -| child_offset, .height = 0 }, 354 + .{ .width = max_size.width -| child_offset, .height = null }, 355 355 ); 356 356 357 357 // Draw the child