diff options
author | David Vazgenovich Shakaryan <dvshakaryan@gmail.com> | 2025-05-11 18:39:12 -0700 |
---|---|---|
committer | David Vazgenovich Shakaryan <dvshakaryan@gmail.com> | 2025-05-11 18:39:12 -0700 |
commit | a5217519abfb1e1dda16225291c46d76a71a98b0 (patch) | |
tree | 98597da97035b4309df023f9d48d527deef8d066 /main.lua | |
parent | eab6a95593ec7bd681e4e7b45933706b9638a4c2 (diff) | |
download | mpv-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.lua | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |