mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-03-27 18:43:31 +01:00
Fix the default 'activate' value.
This commit is contained in:
@@ -1025,7 +1025,7 @@ const Tabs = Module("tabs", {
|
|||||||
];
|
];
|
||||||
options.add(["activate", "act"],
|
options.add(["activate", "act"],
|
||||||
"Define when tabs are automatically activated",
|
"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,
|
completer: function (context) activateGroups,
|
||||||
has: Option.has.toggleAll,
|
has: Option.has.toggleAll,
|
||||||
|
|||||||
Reference in New Issue
Block a user