From e96c94649911998f09ba5618fb799603091cd936 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Tue, 12 Oct 2010 16:05:21 -0400 Subject: [PATCH] Fix the default 'activate' value. --- common/content/tabs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/tabs.js b/common/content/tabs.js index 34d037be..f9f47380 100644 --- a/common/content/tabs.js +++ b/common/content/tabs.js @@ -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,