1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 11:08:09 +01:00

Fix default value completion for options.

This commit is contained in:
Štěpán Němec
2010-10-17 20:46:48 +02:00
parent 9c10307556
commit b542c6b0b4

View File

@@ -957,7 +957,7 @@ const Options = Module("options", {
context.title = ["Extra Completions"];
context.completions = [
[option.stringValue, "Current value"],
[option.stringValue, "Default value"]
[option.stringDefaultValue, "Default value"]
].filter(function (f) f[0] !== "" && String(f[0]).length < 200);
context.quote = ["", util.identity, ""];
});