fix(highlight): apply 'winblend' to float border (#25981)

This commit is contained in:
zeertzjq
2023-11-11 15:12:58 +08:00
committed by GitHub
parent fdaf6bc557
commit 6c3e170e56
3 changed files with 69 additions and 9 deletions

View File

@@ -2686,7 +2686,7 @@ static const char *did_set_winblend(optset_T *args)
if (value != old_value) {
win->w_p_winbl = MAX(MIN(win->w_p_winbl, 100), 0);
win->w_hl_needs_update = true;
check_blending(curwin);
check_blending(win);
}
return NULL;