diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2019-06-25 18:36:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-25 18:36:07 +0200 |
commit | 788bcbba24655d004764edfae7d432cd474d0a96 (patch) | |
tree | 0180de15fd7e7c9d1cc83502db585e27d2fa9903 /src/nvim/screen.c | |
parent | 3e6f06f5d2bea05767c62420b4a73a0c266f7f5a (diff) | |
parent | b0c1e2ab5a46a9ab040d8b2be37196d4d00d3944 (diff) | |
download | rneovim-788bcbba24655d004764edfae7d432cd474d0a96.tar.gz rneovim-788bcbba24655d004764edfae7d432cd474d0a96.tar.bz2 rneovim-788bcbba24655d004764edfae7d432cd474d0a96.zip |
Merge pull request #9923 from bfredl/floatblend
blending of floating windows, override individual attributes with ":hi Group blend="
Diffstat (limited to 'src/nvim/screen.c')
-rw-r--r-- | src/nvim/screen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/screen.c b/src/nvim/screen.c index f349304468..d91b832e5a 100644 --- a/src/nvim/screen.c +++ b/src/nvim/screen.c @@ -482,13 +482,13 @@ void update_screen(int type) } end_search_hl(); + // May need to redraw the popup menu. - if (pum_drawn() && redraw_popupmenu) { + if (pum_drawn() && must_redraw_pum) { pum_redraw(); } send_grid_resize = false; - redraw_popupmenu = false; /* Reset b_mod_set flags. Going through all windows is probably faster * than going through all buffers (there could be many buffers). */ |