mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
FileManager: fix up arrow issue
This commit is contained in:
@@ -154,7 +154,7 @@ function FileChooser:genItemTableFromPath(path)
|
||||
end
|
||||
|
||||
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)
|
||||
|
||||
local item_table = {}
|
||||
@@ -172,7 +172,7 @@ function FileChooser:genItemTableFromPath(path)
|
||||
istr = util.template(_("%1 items"), num_items)
|
||||
end
|
||||
table.insert(item_table, {
|
||||
text = dir.name.."/",
|
||||
text = dir.name == ".." and "⬆ ../" or dir.name.."/",
|
||||
mandatory = istr,
|
||||
path = subdir_path
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user