Try to stay near the same line in modes if the current one is removed.

This commit is contained in:
nicm 2024-10-06 09:30:22 +00:00
parent a869693405
commit 9528d7470b

View File

@ -356,8 +356,13 @@ mode_tree_set_current(struct mode_tree_data *mtd, uint64_t tag)
mtd->offset = 0; mtd->offset = 0;
return (1); return (1);
} }
mtd->current = 0; if (mtd->current >= mtd->line_size) {
mtd->offset = 0; mtd->current = mtd->line_size - 1;
if (mtd->current > mtd->height - 1)
mtd->offset = mtd->current - mtd->height + 1;
else
mtd->offset = 0;
}
return (0); return (0);
} }