1
0
forked from aniani/vim

patch 8.1.1997: no redraw after a popup window filter is invoked

Problem:    No redraw after a popup window filter is invoked.
Solution:   Redraw if needed.
This commit is contained in:
Bram Moolenaar
2019-09-07 14:06:52 +02:00
parent aad222c9c9
commit bcb4c8f905
4 changed files with 20 additions and 3 deletions

View File

@@ -2802,6 +2802,8 @@ popup_do_filter(int c)
&& (wp->w_filter_mode & state) != 0)
res = invoke_popup_filter(wp, c);
if (must_redraw)
redraw_after_callback(FALSE);
recursive = FALSE;
KeyTyped = save_KeyTyped;
return res;