diff options
| -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 | 
