changeset 16900:aad59f9fe253 v8.1.1451

patch 8.1.1451: CTRL-L does not clear screen with a popup window commit https://github.com/vim/vim/commit/ca2f7037c1a53bdbb6f5dc0a2f92d50020e062cc Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jun 2 15:56:15 2019 +0200 patch 8.1.1451: CTRL-L does not clear screen with a popup window Problem: CTRL-L does not clear screen with a popup window. Solution: Do not change the type to NOT_VALID. Redraw all windows. (closes #4471)
author Bram Moolenaar <Bram@vim.org>
date Sun, 02 Jun 2019 16:00:05 +0200
parents 99efbebd625d
children ba2e4ebe7b8f
files src/screen.c src/version.c
diffstat 2 files changed, 8 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/screen.c
+++ b/src/screen.c
@@ -613,7 +613,12 @@ update_screen(int type_arg)
 #ifdef FEAT_TEXT_PROP
     // TODO: avoid redrawing everything when there is a popup window.
     if (popup_any_visible())
-	type = NOT_VALID;
+    {
+	if (type < NOT_VALID)
+	    type = NOT_VALID;
+	FOR_ALL_WINDOWS(wp)
+	    wp->w_redr_type = NOT_VALID;
+    }
 #endif
 
     updating_screen = TRUE;
--- a/src/version.c
+++ b/src/version.c
@@ -768,6 +768,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1451,
+/**/
     1450,
 /**/
     1449,