diff options
author | nicm <nicm> | 2019-03-14 17:58:52 +0000 |
---|---|---|
committer | nicm <nicm> | 2019-03-14 17:58:52 +0000 |
commit | 9bd4b96766cbbdc8f8e166baf726d69e8a6024ff (patch) | |
tree | 944a615743e8c42d902cbcf3da89e830aecbc3cf | |
parent | 0425e3178d2f7cc0d33cd9aa8ed74b096b31727e (diff) | |
download | rtmux-9bd4b96766cbbdc8f8e166baf726d69e8a6024ff.tar.gz rtmux-9bd4b96766cbbdc8f8e166baf726d69e8a6024ff.tar.bz2 rtmux-9bd4b96766cbbdc8f8e166baf726d69e8a6024ff.zip |
Fix ED1 (clear end of screen), reported by Marc Reisner.
-rw-r--r-- | tty.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1672,7 +1672,7 @@ tty_cmd_clearstartofscreen(struct tty *tty, const struct tty_ctx *ctx) px = 0; nx = screen_size_x(wp->screen); py = 0; - ny = ctx->ocy - 1; + ny = ctx->ocy; tty_clear_pane_area(tty, ctx, py, ny, px, nx, ctx->bg); |