this repo has no description
13
fork

Configure Feed

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

vxfw(ListView): obscure area when drawing cursor

+5
+5
src/vxfw/ListView.zig
··· 289 289 .buffer = &.{}, 290 290 .children = &.{}, 291 291 }; 292 + if (self.draw_cursor) { 293 + // If we are drawing the cursor, we need to allocate a buffer so that we obscure anything 294 + // underneath us 295 + surface.buffer = try vxfw.Surface.createBuffer(ctx.arena, max_size); 296 + } 292 297 293 298 // Set state 294 299 {