this repo has no description
13
fork

Configure Feed

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

Scrollbar: usize -> u16 casts

authored by

Jari Vetoniemi and committed by
Tim Culverhouse
0b00376c 9036ee27

+1 -1
+1 -1
src/widgets/Scrollbar.zig
··· 29 29 const bar_top = self.top * win.height / self.total; 30 30 var i: usize = 0; 31 31 while (i < bar_height) : (i += 1) 32 - win.writeCell(0, i + bar_top, .{ .char = self.character, .style = self.style }); 32 + win.writeCell(0, @intCast(i + bar_top), .{ .char = self.character, .style = self.style }); 33 33 }