mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-02 01:40:13 -05:00
csi: fix scrolling region end
This commit is contained in:
parent
5b53fda5e6
commit
e7043c8a6d
1 changed files with 1 additions and 1 deletions
2
csi.c
2
csi.c
|
|
@ -450,7 +450,7 @@ csi_dispatch(struct terminal *term, uint8_t final)
|
||||||
|
|
||||||
/* 1-based */
|
/* 1-based */
|
||||||
term->grid.scrolling_region.start = start - 1;
|
term->grid.scrolling_region.start = start - 1;
|
||||||
term->grid.scrolling_region.end = end - 1;
|
term->grid.scrolling_region.end = end;
|
||||||
|
|
||||||
LOG_INFO("scrolling region: %d-%d",
|
LOG_INFO("scrolling region: %d-%d",
|
||||||
term->grid.scrolling_region.start,
|
term->grid.scrolling_region.start,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue