Clamping to area needs to use the offset without the status line, since that is

where the window offsets are based.
This commit is contained in:
Nicholas Marriott
2020-05-02 16:17:44 +01:00
parent cb1131a294
commit af69289e0e
4 changed files with 9 additions and 6 deletions

View File

@ -136,8 +136,9 @@ screen_write_set_client_cb(struct tty_ctx *ttyctx, struct client *c)
ttyctx->bigger = tty_window_offset(&c->tty, &ttyctx->wox, &ttyctx->woy,
&ttyctx->wsx, &ttyctx->wsy);
ttyctx->xoff = wp->xoff;
ttyctx->yoff = wp->yoff;
ttyctx->xoff = ttyctx->rxoff = wp->xoff;
ttyctx->yoff = ttyctx->ryoff = wp->yoff;
if (status_at_line(c) == 0)
ttyctx->yoff += status_line_size(c);