this repo has no description
3
fork

Configure Feed

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

zig fmt (with zig 0.14)

+3 -3
+3 -3
src/irc.zig
··· 782 782 // We need to redraw if the column entered the gutter 783 783 if (last_mouse.col >= gutter_width and mouse.col < gutter_width) 784 784 ctx.redraw = true 785 - // Or if the column exited the gutter 785 + // Or if the column exited the gutter 786 786 else if (last_mouse.col < gutter_width and mouse.col >= gutter_width) 787 787 ctx.redraw = true 788 - // Or if the row changed 788 + // Or if the row changed 789 789 else if (last_mouse.row != mouse.row) 790 790 ctx.redraw = true 791 - // Or if we did a middle click, and now released it 791 + // Or if we did a middle click, and now released it 792 792 else if (last_mouse.button == .middle) 793 793 ctx.redraw = true; 794 794 } else {