this repo has no description
13
fork

Configure Feed

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

vxfw(ListView): fix rendering of cursored widget

+2 -1
+2 -1
src/vxfw/ListView.zig
··· 398 398 .surface = child.surface, 399 399 .z_index = 0, 400 400 }; 401 + const size = child.surface.size; 401 402 const cursor_surf = try vxfw.Surface.initWithChildren( 402 403 ctx.arena, 403 404 self.widget(), 404 - .{ .width = child_offset, .height = child.surface.size.height }, 405 + .{ .width = child_offset + size.width, .height = size.height }, 405 406 sub, 406 407 ); 407 408 for (0..cursor_surf.size.height) |row| {