comparison 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
comparison
equal deleted inserted replaced
26164:54e3f0441e89 26165:7b07f361b1d4
2137 if (row >= screen_Rows || col >= screen_Columns) 2137 if (row >= screen_Rows || col >= screen_Columns)
2138 return; 2138 return;
2139 2139
2140 // Skip if under the popup menu. 2140 // Skip if under the popup menu.
2141 // Popup windows with zindex higher than POPUPMENU_ZINDEX go on top. 2141 // Popup windows with zindex higher than POPUPMENU_ZINDEX go on top.
2142 if (pum_under_menu(row, col) 2142 if (pum_under_menu(row, col, TRUE)
2143 #ifdef FEAT_PROP_POPUP 2143 #ifdef FEAT_PROP_POPUP
2144 && screen_zindex <= POPUPMENU_ZINDEX 2144 && screen_zindex <= POPUPMENU_ZINDEX
2145 #endif 2145 #endif
2146 ) 2146 )
2147 return; 2147 return;