diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-08-12 21:15:34 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-08-12 21:15:34 +0200 |
commit | 893029ab20a06da9c0cf29661c9f6e2ec5583dce (patch) | |
tree | ccdaf0549aa564a6429d29a26b5c21fb9aafa05d /src/terminal.c | |
parent | c977092053e1a27f571f8a27126717cc28af4e58 (diff) | |
download | vim-893029ab20a06da9c0cf29661c9f6e2ec5583dce.zip |
patch 8.0.0920: cursor wrong after switching altscreen in terminal
Problem: The cursor shape is wrong after switch back from an alternate
screen in a terminal window. (arius Gedminas)
Solution: Change bitfield to unsigned. Set flag that cursor shape was set.
Diffstat (limited to 'src/terminal.c')
-rw-r--r-- | src/terminal.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/terminal.c b/src/terminal.c index fe1d5da2f..020271a89 100644 --- a/src/terminal.c +++ b/src/terminal.c @@ -1170,6 +1170,7 @@ may_set_cursor_props(term_T *term) { if (in_terminal_loop == term) { + did_change_cursor = TRUE; if (term->tl_cursor_color != NULL) term_cursor_color(term->tl_cursor_color); else |