fix: don't draw and if the user changed their border symbol, closes #85

This commit is contained in:
sxyazi
2025-03-11 13:34:19 +08:00
parent 2bf70d880e
commit 92f78dc6d0

View File

@@ -6,7 +6,7 @@ local function setup(_, opts)
Tab.build = function(self, ...)
local bar = function(c, x, y)
if x <= 0 or x == self._area.w - 1 then
if x <= 0 or x == self._area.w - 1 or th.mgr.border_symbol ~= "" then
return ui.Bar(ui.Bar.TOP)
end