mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-25 13:16:11 +03:00
terminal: Pin.isBetween incorrect if same y and same page
This commit is contained in:
@ -3124,7 +3124,7 @@ pub const Pin = struct {
|
|||||||
else
|
else
|
||||||
true;
|
true;
|
||||||
}
|
}
|
||||||
return self.x >= top.x;
|
if (self.x < top.x) return false;
|
||||||
}
|
}
|
||||||
if (self.page == bottom.page) {
|
if (self.page == bottom.page) {
|
||||||
if (self.y > bottom.y) return false;
|
if (self.y > bottom.y) return false;
|
||||||
|
Reference in New Issue
Block a user