summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-02-13 12:16:05 +0100
committerBram Moolenaar <Bram@vim.org>2013-02-13 12:16:05 +0100
commit51971b33988e590901b9f6ad14a5a36f276afd0b (patch)
tree46cfaa8875ee9b117e0240549bc8463e9b8ec0bb
parente9d47cd08b0272ec278f03bb1be21f087ce63af6 (diff)
updated for version 7.3.807v7.3.807
Problem: Popup menu does not work properly with the preview window, folds and 'cursorcolumn'. Solution: Redraw the popup menu after redrawing windows. (Christian Brabandt)
-rw-r--r--src/screen.c5
-rw-r--r--src/version.c2
2 files changed, 7 insertions, 0 deletions
diff --git a/src/screen.c b/src/screen.c
index 6d2345cbe5..055a46d950 100644
--- a/src/screen.c
+++ b/src/screen.c
@@ -548,6 +548,11 @@ update_screen(type)
#if defined(FEAT_SEARCH_EXTRA)
end_search_hl();
#endif
+#ifdef FEAT_INS_EXPAND
+ /* May need to redraw the popup menu. */
+ if (pum_visible())
+ pum_redraw();
+#endif
#ifdef FEAT_WINDOWS
/* Reset b_mod_set flags. Going through all windows is probably faster
diff --git a/src/version.c b/src/version.c
index 83cdd98ce8..1c23a5e873 100644
--- a/src/version.c
+++ b/src/version.c
@@ -726,6 +726,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 807,
+/**/
806,
/**/
805,