diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-06-14 19:23:57 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-06-14 19:23:57 +0200 |
commit | a540f8aa3b2570f1d903b63413301ec3d48b27d5 (patch) | |
tree | f9b38804f41d99da0febd16344d3ac554d3d7ed2 /src/proto/popupwin.pro | |
parent | 37df9a4401f6737d6216306ea77a7e080c942aea (diff) | |
download | vim-git-a540f8aa3b2570f1d903b63413301ec3d48b27d5.tar.gz |
patch 8.1.1527: when moving popup window over the cmdline it is not redrawnv8.1.1527
Problem: When moving a popup window over the command line it is not
redrawn.
Solution: Redraw the command line. Move popup redrawing code to the popupwin
file.
Diffstat (limited to 'src/proto/popupwin.pro')
-rw-r--r-- | src/proto/popupwin.pro | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/proto/popupwin.pro b/src/proto/popupwin.pro index eeabafa9a..0b9dc4256 100644 --- a/src/proto/popupwin.pro +++ b/src/proto/popupwin.pro @@ -24,4 +24,6 @@ void popup_reset_handled(void); win_T *find_next_popup(int lowest); int popup_do_filter(int c); void popup_check_cursor_pos(void); +void may_update_popup_mask(int type); +void update_popups(void (*win_update)(win_T *wp)); /* vim: set ft=c : */ |