mirror of
https://github.com/folke/snacks.nvim
synced 2025-08-03 18:28:38 +00:00
fix(win): set border to none for backdrop windows (#19)
## Description Previously, backdrop windows were being created with the default border options set in `opts`. I can't imagine this is ever desirable (see screenshots), so always set the backdrop window border to none. ## Related Issue(s) N/A ## Screenshots ### Before:  ### After: 
This commit is contained in:
parent
636a17fd66
commit
f5602e60c3
1 changed files with 1 additions and 0 deletions
|
@ -430,6 +430,7 @@ function M:drop()
|
|||
height = 0,
|
||||
width = 0,
|
||||
style = "minimal",
|
||||
border = "none",
|
||||
focusable = false,
|
||||
zindex = self.opts.zindex - 1,
|
||||
wo = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue