Module: wine Branch: master Commit: 298fa4a7f0fb8f97923a2a86c6e42b6e060e062b URL: https://source.winehq.org/git/wine.git/?a=commit;h=298fa4a7f0fb8f97923a2a86c...
Author: Jacek Caban jacek@codeweavers.com Date: Fri Sep 4 13:50:47 2020 +0200
conhost: Synchronize tty cursor position in set_output_info.
Signed-off-by: Jacek Caban jacek@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
programs/conhost/conhost.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/programs/conhost/conhost.c b/programs/conhost/conhost.c index 523b1dfa94..02e3789c3e 100644 --- a/programs/conhost/conhost.c +++ b/programs/conhost/conhost.c @@ -613,6 +613,7 @@ static NTSTATUS set_output_info( struct screen_buffer *screen_buffer, } }
+ if (is_active( screen_buffer )) tty_sync( screen_buffer->console ); return STATUS_SUCCESS; }