From 0b34fefe6e007ca2eb68382d0b4042d7a1ab1dd4 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sat, 17 Mar 2012 19:18:37 +0000 Subject: [PATCH] Use the region lower not the pane size to work out where the bottom line is. --- tty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tty.c b/tty.c index 96932647..1f83ca74 100644 --- a/tty.c +++ b/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);