fix: Border window also need to be winblend due to window overlap in multigrid UI (#1421)

This commit is contained in:
akiyosi
2021-11-28 18:57:08 +09:00
committed by GitHub
parent 492f1d38f6
commit ed4adba6d0

View File

@@ -291,6 +291,9 @@ function Picker:_create_window(bufnr, popup_opts, nowrap)
a.nvim_win_set_option(win, "wrap", false) a.nvim_win_set_option(win, "wrap", false)
end end
local border_win = opts and opts.border and opts.border.win_id local border_win = opts and opts.border and opts.border.win_id
if border_win then
a.nvim_win_set_option(border_win, "winblend", self.window.winblend)
end
return win, opts, border_win return win, opts, border_win
end end