patch 9.0.0472: virtual text "below" doesn't show in list mode

Problem:    Virtual text "below" doesn't show in list mode.
Solution:   Reset lcs_eol_one when displaying text property.
diff --git a/src/drawline.c b/src/drawline.c
index 50d18ec..d958e7a 100644
--- a/src/drawline.c
+++ b/src/drawline.c
@@ -1888,6 +1888,11 @@
 				    p_extra_free2 = wlv.p_extra;
 				}
 
+				if (lcs_eol_one < 0 && wlv.col
+					       + wlv.n_extra - 2 > wp->w_width)
+				    // don't bail out at end of line
+				    lcs_eol_one = 0;
+
 				// When 'wrap' is off then for "below" we need
 				// to start a new line explictly.
 				if (start_line)