summaryrefslogtreecommitdiff
path: root/main.lua
diff options
context:
space:
mode:
authorDavid Vazgenovich Shakaryan <dvshakaryan@gmail.com>2025-05-11 18:39:12 -0700
committerDavid Vazgenovich Shakaryan <dvshakaryan@gmail.com>2025-05-11 18:39:12 -0700
commita5217519abfb1e1dda16225291c46d76a71a98b0 (patch)
tree98597da97035b4309df023f9d48d527deef8d066 /main.lua
parenteab6a95593ec7bd681e4e7b45933706b9638a4c2 (diff)
downloadmpv-iptv-menu-a5217519abfb1e1dda16225291c46d76a71a98b0.tar.gz
mpv-iptv-menu-a5217519abfb1e1dda16225291c46d76a71a98b0.tar.xz
remove group brackets in titles and paths
Diffstat (limited to 'main.lua')
-rw-r--r--main.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.lua b/main.lua
index 1b6e5f9..c63d538 100644
--- a/main.lua
+++ b/main.lua
@@ -186,7 +186,7 @@ local function update_osd()
if menus[i].search_active then
col = colours.selected
end
- out[#out+1] = col .. ' » [' .. menus[i].title .. ']'
+ out[#out+1] = col .. ' » ' .. menus[i].title
end
out[#out+1] = ' ' -- space character for correct line height
end
@@ -252,7 +252,7 @@ local function update_osd()
end
for i = #opt.path, 1, -1 do
local node = opt.path[i]
- path = path .. ' « [' .. node.name .. ']'
+ path = path .. ' « ' .. node.name
end
str = str .. path
end