updated for version 7.1-149
diff --git a/src/gui.c b/src/gui.c
index b2b8e84..e5a0c26 100644
--- a/src/gui.c
+++ b/src/gui.c
@@ -4214,7 +4214,19 @@
#endif
)
{
- redraw_win_later(wp, VALID);
+ int type = VALID;
+
+#ifdef FEAT_INS_EXPAND
+ if (pum_visible())
+ {
+ type = NOT_VALID;
+ wp->w_lines_valid = 0;
+ }
+#endif
+ /* Don't set must_redraw here, it may cause the popup menu to
+ * disappear when losing focus after a scrollbar drag. */
+ if (wp->w_redr_type < type)
+ wp->w_redr_type = type;
updateWindow(wp); /* update window, status line, and cmdline */
}