mirror of
https://github.com/tmux/tmux.git
synced 2024-11-01 07:08:49 +00:00
Merge branch 'obsd-master'
This commit is contained in:
commit
486221f206
@ -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->current = mtd->line_size - 1;
|
||||||
|
if (mtd->current > mtd->height - 1)
|
||||||
|
mtd->offset = mtd->current - mtd->height + 1;
|
||||||
|
else
|
||||||
mtd->offset = 0;
|
mtd->offset = 0;
|
||||||
|
}
|
||||||
return (0);
|
return (0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user