Skip to content

Commit f76fe35

Browse files
committed
Bug 1882815 - Enable cross-container Tab Search for Release. r=jteow
Differential Revision: https://phabricator.services.mozilla.com/D203731
1 parent c7f9c98 commit f76fe35

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

browser/app/profile/firefox.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -546,11 +546,7 @@ pref("browser.urlbar.switchTabs.adoptIntoActiveWindow", false);
546546

547547
// Controls whether searching for open tabs returns tabs from any container
548548
// or only from the current container.
549-
#ifdef NIGHTLY_BUILD
550549
pref("browser.urlbar.switchTabs.searchAllContainers", true);
551-
#else
552-
pref("browser.urlbar.switchTabs.searchAllContainers", false);
553-
#endif
554550

555551
// Whether addresses and search results typed into the address bar
556552
// should be opened in new tabs by default.

browser/components/urlbar/UrlbarPrefs.sys.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ const PREF_URLBAR_DEFAULTS = new Map([
423423

424424
// Controls whether searching for open tabs returns tabs from any container
425425
// or only from the current container.
426-
["switchTabs.searchAllContainers", false],
426+
["switchTabs.searchAllContainers", true],
427427

428428
// The number of remaining times the user can interact with tab-to-search
429429
// onboarding results before we stop showing them.

0 commit comments

Comments
 (0)