diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-08-12 14:08:25 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-08-12 14:08:25 +0200 |
commit | 107abd2ca53c31fd3bb40d77ff296e98eaae2975 (patch) | |
tree | ec1ae0386ed26e1ea96291a69ddf47f9b7aef854 /src/proto | |
parent | 0e5d3a2940ead6c8ee3bacacea4153b647b67cca (diff) | |
download | vim-107abd2ca53c31fd3bb40d77ff296e98eaae2975.zip |
patch 7.4.2199
Problem: In the GUI the cursor is hidden when redrawing any window,
causing flicker.
Solution: Only undraw the cursor when updating the window it's in.
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/gui.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/gui.pro b/src/proto/gui.pro index 7a0176f5b..26466ae02 100644 --- a/src/proto/gui.pro +++ b/src/proto/gui.pro @@ -23,7 +23,7 @@ void gui_stop_highlight(int mask); void gui_clear_block(int row1, int col1, int row2, int col2); void gui_update_cursor_later(void); void gui_write(char_u *s, int len); -void gui_dont_update_cursor(void); +void gui_dont_update_cursor(int undraw); void gui_can_update_cursor(void); int gui_outstr_nowrap(char_u *s, int len, int flags, guicolor_T fg, guicolor_T bg, int back); void gui_undraw_cursor(void); |