1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 13:02:27 +01:00

Show the folder icon in path completions

This commit is contained in:
Kris Maglione
2008-11-25 04:48:44 +00:00
parent f536871f87
commit 19b1442305

View File

@@ -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) {}