aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/option.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-11-11 15:12:58 +0800
committerGitHub <noreply@github.com>2023-11-11 15:12:58 +0800
commit6c3e170e5668e72b2b144a86b4e8278bc70daa48 (patch)
treea3ccf7e60f49c83de4fd49f52badbdea5d4b4ef9 /src/nvim/option.c
parentfdaf6bc5573f578d100321dfc084d513884fd73a (diff)
downloadrneovim-6c3e170e5668e72b2b144a86b4e8278bc70daa48.tar.gz
rneovim-6c3e170e5668e72b2b144a86b4e8278bc70daa48.tar.bz2
rneovim-6c3e170e5668e72b2b144a86b4e8278bc70daa48.zip
fix(highlight): apply 'winblend' to float border (#25981)
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r--src/nvim/option.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c
index 7005b63cac..690a03f1a0 100644
--- a/src/nvim/option.c
+++ b/src/nvim/option.c
@@ -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;