mirror of
https://github.com/tmux/tmux.git
synced 2024-11-05 02:18:47 +00:00
Sync OpenBSD patchset 1060:
Use the region lower not the pane size to work out where the bottom line is.
This commit is contained in:
parent
92c522228b
commit
a7c615a794
2
tty.c
2
tty.c
@ -1001,7 +1001,7 @@ tty_cmd_cell(struct tty *tty, const struct tty_ctx *ctx)
|
||||
* The pane doesn't fill the entire line, the linefeed
|
||||
* will already have happened, so just move the cursor.
|
||||
*/
|
||||
if (ctx->ocy != wp->yoff + wp->sy - 1)
|
||||
if (ctx->ocy != wp->yoff + wp->screen->rlower)
|
||||
tty_cursor_pane(tty, ctx, 0, ctx->ocy + 1);
|
||||
else
|
||||
tty_cursor_pane(tty, ctx, 0, ctx->ocy);
|
||||
|
Loading…
Reference in New Issue
Block a user