mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-08 10:06:22 -05:00
grid: bug: OSC-8 URIs were incorrectly skipped while resizing the alt screen
This commit is contained in:
parent
4eb0aa0f18
commit
be203aeae1
2 changed files with 3 additions and 1 deletions
|
|
@ -51,6 +51,8 @@
|
|||
* OSC-8 URIs in the last column
|
||||
* OSC-8 URIs sometimes being applied to too many, and seemingly
|
||||
unrelated cells (https://codeberg.org/dnkl/foot/issues/816).
|
||||
* OSC-8 URIs incorrectly being dropped when resizing the terminal
|
||||
window with the alternate screen active.
|
||||
|
||||
|
||||
### Security
|
||||
|
|
|
|||
2
grid.c
2
grid.c
|
|
@ -337,7 +337,7 @@ grid_resize_without_reflow(
|
|||
const struct row_uri_range *old_range =
|
||||
&old_row->extra->uri_ranges.v[i];
|
||||
|
||||
if (old_range->start >= new_rows) {
|
||||
if (old_range->start >= new_cols) {
|
||||
/* The whole range is truncated */
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue