From: David Herrmann Date: Sun, 5 Oct 2014 12:47:57 +0000 (+0200) Subject: terminal/subterm: skip setting parent's cursor X-Git-Tag: v217~312 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=9ed6e68e52f399c10d7e4d7f29bb0212c422e9e9;p=elogind.git 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. --- diff --git a/src/libsystemd-terminal/subterm.c b/src/libsystemd-terminal/subterm.c index 321cd35f5..dda675970 100644 --- a/src/libsystemd-terminal/subterm.c +++ b/src/libsystemd-terminal/subterm.c @@ -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"); }