this repo has no description
13
fork

Configure Feed

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

widget(Table): replace iniChild call

+5 -6
+5 -6
src/widgets/Table.zig
··· 209 209 } 210 210 }; 211 211 212 - const table_win = win.initChild( 213 - 0, 214 - table_ctx.y_off, 215 - .{ .limit = win.width }, 216 - .{ .limit = win.height }, 217 - ); 212 + const table_win = win.child(.{ 213 + .y_off = table_ctx.y_off, 214 + .width = .{ .limit = win.width }, 215 + .height = .{ .limit = win.height }, 216 + }); 218 217 219 218 // Headers 220 219 if (table_ctx.col > headers.len - 1) table_ctx.col = headers.len - 1;