1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-21 11:47:59 +01:00

Fix the :set! completer's title to refer to the host application.

Also fixes a 'pps' value description that refers to Firefox as well.
This commit is contained in:
Doug Kearns
2009-06-27 17:12:13 +10:00
parent 6f2eb2d1ef
commit a6fde383c0
2 changed files with 3 additions and 2 deletions

View File

@@ -982,7 +982,7 @@ function Options() //{{{
completion.preference = function preference(context) {
context.anchored = false;
context.title = ["Firefox Preference", "Value"];
context.title = [config.hostApplication + " Preference", "Value"];
context.keys = { text: function (item) item, description: function (item) options.getPref(item) };
context.completions = services.get("pref").getChildList("", { value: 0 });
};