mirror of
https://github.com/tmux/tmux.git
synced 2025-01-26 07:58:55 +00:00
Tweak last fix to actually hit the right end of pane.
This commit is contained in:
parent
7ad052583a
commit
928f40615c
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
|
* The pane doesn't fill the entire line, the linefeed
|
||||||
* will already have happened, so just move the cursor.
|
* 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);
|
tty_cursor_pane(tty, ctx, 0, ctx->ocy + 1);
|
||||||
else
|
else
|
||||||
tty_cursor_pane(tty, ctx, 0, ctx->ocy);
|
tty_cursor_pane(tty, ctx, 0, ctx->ocy);
|
||||||
|
Loading…
Reference in New Issue
Block a user