Do not clear region based on current cursor position, this is not necessary

anymore and causes problems, GitHub issue 2735.
This commit is contained in:
Nicholas Marriott 2021-06-09 14:46:24 +01:00
parent 7a236869ba
commit 607e6b1c33

9
tty.c
View File

@ -1005,13 +1005,8 @@ tty_redraw_region(struct tty *tty, const struct tty_ctx *ctx)
return; return;
} }
if (ctx->ocy < ctx->orupper || ctx->ocy > ctx->orlower) { for (i = ctx->orupper; i <= ctx->orlower; i++)
for (i = ctx->ocy; i < ctx->sy; i++) tty_draw_pane(tty, ctx, i);
tty_draw_pane(tty, ctx, i);
} else {
for (i = ctx->orupper; i <= ctx->orlower; i++)
tty_draw_pane(tty, ctx, i);
}
} }
/* Is this position visible in the pane? */ /* Is this position visible in the pane? */