commit | 23c1b2b018c8121ca5fcc247e37966428bf8ca66 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Tue Dec 05 21:32:33 2017 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Tue Dec 05 21:32:33 2017 +0100 |
tree | e5dce7f458be881b4d85ab569096b3318e1803ab | |
parent | 415a6939a4e8d4e26b4af26c24eb75243d3a2756 [diff] [blame] |
patch 8.0.1376: cursor in terminal not always updated Problem: Cursor in terminal not always updated. Solution: Call gui_mch_flush(). (Ken Takata)
diff --git a/src/terminal.c b/src/terminal.c index 5a2ebf8..744b7de 100644 --- a/src/terminal.c +++ b/src/terminal.c
@@ -675,7 +675,10 @@ out_flush(); #ifdef FEAT_GUI if (gui.in_use) + { gui_update_cursor(FALSE, FALSE); + gui_mch_flush(); + } #endif } }