1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-04 21:54:13 +01:00

Fix the default 'activate' value.

This commit is contained in:
Kris Maglione
2010-10-12 16:05:21 -04:00
parent 46f871571d
commit e96c946499

View File

@@ -1025,7 +1025,7 @@ const Tabs = Module("tabs", {
];
options.add(["activate", "act"],
"Define when tabs are automatically activated",
"stringlist", [g[0] for (g in values(activateGroups)) if (!g[2] || !options.getPref("browser.tabs." + g[2]))].join(","),
"stringlist", [g[0] for (g in values(activateGroups.slice(1))) if (!g[2] || !options.getPref("browser.tabs." + g[2]))].join(","),
{
completer: function (context) activateGroups,
has: Option.has.toggleAll,