this repo has no description
13
fork

Configure Feed

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

fix child scroll

authored by

Matteo Romano and committed by
Tim Culverhouse
f06c11fc b78ac957

+2 -2
+2 -2
src/Window.zig
··· 438 438 var row: u16 = @max(self.y_off, 0); 439 439 const first_col: u16 = @max(self.x_off, 0); 440 440 while (row < self.height - n) : (row += 1) { 441 - const dst_start = (row * self.width) + first_col; 441 + const dst_start = (row * self.screen.width) + first_col; 442 442 const dst_end = dst_start + self.width; 443 443 444 - const src_start = ((row + n) * self.width) + first_col; 444 + const src_start = ((row + n) * self.screen.width) + first_col; 445 445 const src_end = src_start + self.width; 446 446 @memcpy(self.screen.buf[dst_start..dst_end], self.screen.buf[src_start..src_end]); 447 447 }