aboutsummaryrefslogtreecommitdiff
path: root/tty.c
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2012-03-18 02:01:46 +0000
committerTiago Cunha <tcunha@gmx.com>2012-03-18 02:01:46 +0000
commita7c615a794671e5ca3d5c81707749b4af082fd85 (patch)
tree94fe8dc83acdc373fed18f10e09d3d73ff4a3161 /tty.c
parent92c522228b65db753ed4ec4ec4703bd70cfb1732 (diff)
downloadrtmux-a7c615a794671e5ca3d5c81707749b4af082fd85.tar.gz
rtmux-a7c615a794671e5ca3d5c81707749b4af082fd85.tar.bz2
rtmux-a7c615a794671e5ca3d5c81707749b4af082fd85.zip
Sync OpenBSD patchset 1060:
Use the region lower not the pane size to work out where the bottom line is.
Diffstat (limited to 'tty.c')
-rw-r--r--tty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tty.c b/tty.c
index d0d5ed00..7dad2668 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);