this repo has no description
13
fork

Configure Feed

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

vxfw: report cell size to app

+7
+4
src/vxfw/App.zig
··· 166 166 .width = @intCast(vx.screen.width), 167 167 .height = @intCast(vx.screen.height), 168 168 }, 169 + .cell_size = .{ 170 + .width = vx.screen.width_pix / vx.screen.width, 171 + .height = vx.screen.height_pix / vx.screen.height, 172 + }, 169 173 }; 170 174 const win = vx.window(); 171 175 win.clear();
+3
src/vxfw/vxfw.zig
··· 137 137 min: Size, 138 138 max: MaxSize, 139 139 140 + // Size of a single cell, in pixels 141 + cell_size: Size, 142 + 140 143 // Unicode stuff 141 144 var unicode: ?*const vaxis.Unicode = null; 142 145 var width_method: vaxis.gwidth.Method = .unicode;