selection: selection_on_rows(): typo: row_start -> row_end

This fixes an issue where selections in the scroll margins were not
detected correctly. This meant they weren’t canceled as they should
have been, which in turn caused a visual glitch where text appeared to
be selected, but were in fact not.
This commit is contained in:
Daniel Eklöf 2022-11-24 17:05:27 +01:00
parent 4d03b6c611
commit 0fc8b65a2b
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
3 changed files with 4 additions and 3 deletions

4
csi.c
View file

@ -933,7 +933,7 @@ csi_dispatch(struct terminal *term, uint8_t final)
break;
}
case 'L': {
case 'L': { /* IL */
if (term->grid->cursor.point.row < term->scroll_region.start ||
term->grid->cursor.point.row >= term->scroll_region.end)
break;
@ -953,7 +953,7 @@ csi_dispatch(struct terminal *term, uint8_t final)
break;
}
case 'M': {
case 'M': { /* DL */
if (term->grid->cursor.point.row < term->scroll_region.start ||
term->grid->cursor.point.row >= term->scroll_region.end)
break;