FileManager: fix up arrow issue

pull/2581/head
Frans de Jonge 7 years ago
parent c855494ba0
commit 1ed0ce0c21

@ -154,7 +154,7 @@ function FileChooser:genItemTableFromPath(path)
end end
table.sort(dirs, sorting) table.sort(dirs, sorting)
if path ~= "/" then table.insert(dirs, 1, {name = ".."}) end if path ~= "/" then table.insert(dirs, 1, {name = ".."}) end
table.sort(files, sorting) table.sort(files, sorting)
local item_table = {} local item_table = {}
@ -172,7 +172,7 @@ function FileChooser:genItemTableFromPath(path)
istr = util.template(_("%1 items"), num_items) istr = util.template(_("%1 items"), num_items)
end end
table.insert(item_table, { table.insert(item_table, {
text = dir.name.."/", text = dir.name == ".." and "⬆ ../" or dir.name.."/",
mandatory = istr, mandatory = istr,
path = subdir_path path = subdir_path
}) })

Loading…
Cancel
Save