mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
grid: row_range_put(): use correct type in call to range_delete()
This commit is contained in:
parent
45f4eb48fb
commit
cb4a74e10b
1 changed files with 1 additions and 1 deletions
2
grid.c
2
grid.c
|
|
@ -1417,7 +1417,7 @@ grid_row_range_put(struct row_ranges *ranges, int col,
|
|||
|
||||
if (ranges_match(r1, r2, type) && r1->end + 1 == r2->start) {
|
||||
r1->end = r2->end;
|
||||
range_delete(ranges, ROW_RANGE_URI, i);
|
||||
range_delete(ranges, type, i);
|
||||
i--;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue