diff src/screen.c @ 26165:7b07f361b1d4 v8.2.3614

patch 8.2.3614: zindex of popup windows not used when redrawing popup menu Commit: https://github.com/vim/vim/commit/6555500bcf280716187eea9dba22d4f69bc0a501 Author: Bakudankun <bakudankun@gmail.com> Date: Wed Nov 17 20:40:16 2021 +0000 patch 8.2.3614: zindex of popup windows not used when redrawing popup menu Problem: zindex of popup windows not used when redrawing popup menu. Solution: Check the zindex when redrawing the popup menu. (closes https://github.com/vim/vim/issues/9129, closes #9089)
author Bram Moolenaar <Bram@vim.org>
date Wed, 17 Nov 2021 21:45:05 +0100
parents 40b17deb294f
children c75f70257cf5
line wrap: on
line diff
--- a/src/screen.c
+++ b/src/screen.c
@@ -2139,7 +2139,7 @@ screen_char(unsigned off, int row, int c
 
     // Skip if under the popup menu.
     // Popup windows with zindex higher than POPUPMENU_ZINDEX go on top.
-    if (pum_under_menu(row, col)
+    if (pum_under_menu(row, col, TRUE)
 #ifdef FEAT_PROP_POPUP
 	    && screen_zindex <= POPUPMENU_ZINDEX
 #endif