this repo has no description
13
fork

Configure Feed

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

vxfw(ListView): bounds check slice

+1
+1
src/vxfw/ListView.zig
··· 113 113 // All other keypresses go to our focused child 114 114 switch (self.children) { 115 115 .slice => |slice| { 116 + if (slice.len == 0) return; 116 117 const child = slice[self.cursor]; 117 118 return child.handleEvent(ctx, event); 118 119 },