Use EL to clear to end of line if possible.

pull/1/head
Nicholas Marriott 2012-03-12 12:38:42 +00:00
parent 1bbb793263
commit 31ddae7735
1 changed files with 2 additions and 1 deletions

3
tty.c
View File

@ -588,7 +588,8 @@ tty_draw_line(struct tty *tty, struct screen *s, u_int py, u_int ox, u_int oy)
tty_reset(tty);
tty_cursor(tty, ox + sx, oy + py);
if (screen_size_x(s) >= tty->sx && tty_term_has(tty->term, TTYC_EL))
if (ox + sx + screen_size_x(s) >= tty->sx &&
tty_term_has(tty->term, TTYC_EL))
tty_putcode(tty, TTYC_EL);
else {
for (i = sx; i < screen_size_x(s); i++)