this repo has no description
13
fork

Configure Feed

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

widgets(terminal): fix overflow in CUP

+2 -2
+2 -2
src/widgets/terminal/Terminal.zig
··· 291 291 var iter = seq.iterator(u16); 292 292 const row = iter.next() orelse 1; 293 293 const col = iter.next() orelse 1; 294 - self.back_screen.cursor.col = col - 1; 295 - self.back_screen.cursor.row = row - 1; 294 + self.back_screen.cursor.col = col -| 1; 295 + self.back_screen.cursor.row = row -| 1; 296 296 }, 297 297 'K' => { 298 298 // TODO selective erase (private_marker == '?')