mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-23 10:57:58 +01:00
Show the folder icon in path completions
This commit is contained in:
@@ -1238,7 +1238,8 @@ function Completion() //{{{
|
||||
return files.map(
|
||||
function (file) [(tail ? file.leafName : dir + file.leafName).replace(" ", "\\ ", "g"),
|
||||
file.isDirectory() ? "Directory" : "File",
|
||||
"moz-icon://" + makeFileURI(file).path]
|
||||
file.isDirectory() ? "resource://gre/res/html/folder.png"
|
||||
: "moz-icon://" + makeFileURI(file).path]
|
||||
);
|
||||
}
|
||||
catch (e) {}
|
||||
|
||||
Reference in New Issue
Block a user