mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-08-28 12:21:55 +00:00
Fix selection not being extended by right click when scrolling down
Fix #2443
This commit is contained in:
parent
3bff3bcbe4
commit
b9ad62226e
1 changed files with 1 additions and 1 deletions
|
|
@ -1707,7 +1707,7 @@ bool
|
|||
screen_has_selection(Screen *self) {
|
||||
if (is_selection_empty(&self->selection)) return false;
|
||||
IterationData idata;
|
||||
iteration_data(self, &self->selection, &idata, 0, true);
|
||||
iteration_data(self, &self->selection, &idata, -self->historybuf->count, true);
|
||||
if (iteration_data_is_empty(self, &idata)) return false;
|
||||
return true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue