diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2012-03-17 18:51:50 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2012-03-17 18:51:50 +0000 |
commit | 928f40615c7a000b87a8fc843b97955a7cfc4a9a (patch) | |
tree | be6ec11c21289bbd982fc821c1dee3c304f7b841 /tty.c | |
parent | 7ad052583a058efb1816d7d4cb634fbc5be1ccc6 (diff) | |
download | rtmux-928f40615c7a000b87a8fc843b97955a7cfc4a9a.tar.gz rtmux-928f40615c7a000b87a8fc843b97955a7cfc4a9a.tar.bz2 rtmux-928f40615c7a000b87a8fc843b97955a7cfc4a9a.zip |
Tweak last fix to actually hit the right end of pane.
Diffstat (limited to 'tty.c')
-rw-r--r-- | tty.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) + if (ctx->ocy != wp->yoff + wp->sy - 1) tty_cursor_pane(tty, ctx, 0, ctx->ocy + 1); else tty_cursor_pane(tty, ctx, 0, ctx->ocy); |