summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2012-03-17 19:18:37 +0000
committerNicholas Marriott <nicm@openbsd.org>2012-03-17 19:18:37 +0000
commit0b34fefe6e007ca2eb68382d0b4042d7a1ab1dd4 (patch)
treebca06f457a438dd65c375c6a48daa0383236b32e
parent928f40615c7a000b87a8fc843b97955a7cfc4a9a (diff)
Use the region lower not the pane size to work out where the bottom line
is.
-rw-r--r--tty.c2
1 files changed, 1 insertions, 1 deletions
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);