mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-06-26 02:41:54 +00:00
Fix #9549
This commit is contained in:
parent
8df80afa79
commit
ebeee72321
1 changed files with 1 additions and 1 deletions
|
|
@ -3979,7 +3979,7 @@ static hyperlink_id_type
|
|||
hyperlink_id_for_range(Screen *self, const Selection *sel) {
|
||||
IterationData idata;
|
||||
iteration_data(sel, &idata, self->columns, -self->historybuf->count, 0);
|
||||
for (int i = 0, y = idata.y; y < idata.y_limit && y < (int)self->lines; y++, i++) {
|
||||
for (int y = idata.y; y < idata.y_limit && y < (int)self->lines; y++) {
|
||||
Line *line = range_line_(self, y);
|
||||
XRange xr = xrange_for_iteration(&idata, y, line);
|
||||
for (index_type x = xr.x; x < xr.x_limit; x++) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue