diff --git a/src/terminal/PageList.zig b/src/terminal/PageList.zig index 6aa6064e5..8a5713333 100644 --- a/src/terminal/PageList.zig +++ b/src/terminal/PageList.zig @@ -3335,7 +3335,7 @@ pub const Pin = struct { // Otherwise our y is the same as the top y, so we need to // check the x coordinate. assert(self.y == top.y); - return self.x >= top.x; + if (self.x < top.x) return false; } if (self.page == bottom.page) { // Our page is the bottom page so we're between the top and