this repo has no description
13
fork

Configure Feed

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

vxfw(ListView): use correct offset when inserting children

+1 -1
+1 -1
src/vxfw/ListView.zig
··· 257 257 258 258 // Insert the child to the beginning of the list 259 259 try child_list.insert(0, .{ 260 - .origin = .{ .col = 2, .row = upheight }, 260 + .origin = .{ .col = if (self.draw_cursor) 2 else 0, .row = upheight }, 261 261 .surface = surf, 262 262 .z_index = 0, 263 263 });