terminal/subterm: skip setting parent's cursor

We draw our own cursor in subterm now, so there's no reason to update the
cursor-position of the parent terminal on each frame. The parent's cursor
is hidden, anyway.
This commit is contained in:
David Herrmann 2014-10-05 14:47:57 +02:00
parent 621dbb0569
commit 9ed6e68e52

View file

@ -482,7 +482,6 @@ static void output_draw_screen(Output *o, term_screen *s) {
term_screen_draw(s, output_draw_cell_fn, o, NULL);
output_move_to(o, s->cursor_x + 1, s->cursor_y + 3);
output_printf(o, "\e[m");
}