Skip to content

Commit

Permalink
fix(popup): mimic native 'solid' border
Browse files Browse the repository at this point in the history
for previous behavior:

```lua
  border = {
    style = { "▛", "▀", "▜", "▐", "▟", "▄", "▙", "▌" },
  },
```
  • Loading branch information
MunifTanjim committed Mar 18, 2024
1 parent 3dc46d7 commit cbd2668
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/nui/popup/border.lua
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ local styles = {
rounded = to_border_map({ "", "", "", "", "", "", "", "" }),
shadow = "shadow",
single = to_border_map({ "", "", "", "", "", "", "", "" }),
solid = to_border_map({ "", "", "", "", "", "", "", "" }),
solid = to_border_map({ " ", " ", " ", " ", " ", " ", " ", " " }),
}

---@param style nui_popup_border_option_style
Expand Down

0 comments on commit cbd2668

Please sign in to comment.